{"id":25750369,"url":"https://github.com/maxwlang/bttv-highlight-deleted-messages","last_synced_at":"2026-06-18T09:32:31.535Z","repository":{"id":105784921,"uuid":"398921432","full_name":"maxwlang/bttv-highlight-deleted-messages","owner":"maxwlang","description":"Fork of BTTV that highlights deleted messages instead of just un-deleting them","archived":false,"fork":false,"pushed_at":"2021-08-22T23:39:19.000Z","size":646,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-21T09:02:53.574Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/maxwlang.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-08-22T23:24:39.000Z","updated_at":"2021-08-22T23:39:22.000Z","dependencies_parsed_at":"2023-06-13T21:45:44.014Z","dependency_job_id":null,"html_url":"https://github.com/maxwlang/bttv-highlight-deleted-messages","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/maxwlang/bttv-highlight-deleted-messages","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxwlang%2Fbttv-highlight-deleted-messages","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxwlang%2Fbttv-highlight-deleted-messages/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxwlang%2Fbttv-highlight-deleted-messages/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxwlang%2Fbttv-highlight-deleted-messages/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maxwlang","download_url":"https://codeload.github.com/maxwlang/bttv-highlight-deleted-messages/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxwlang%2Fbttv-highlight-deleted-messages/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34485163,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-18T02:00:06.871Z","response_time":128,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-02-26T13:16:23.907Z","updated_at":"2026-06-18T09:32:31.423Z","avatar_url":"https://github.com/maxwlang.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"BetterTTV\n=========\n\n[![Build Status](https://github.com/night/betterttv/actions/workflows/ci.yml/badge.svg)](https://github.com/night/betterttv/actions/workflows/ci.yml) [![Dependencies Status](https://david-dm.org/night/BetterTTV/status.svg)](https://david-dm.org/night/BetterTTV) [![Discord](https://img.shields.io/discord/229471495087194112?color=%237289DA\u0026label=discord)](https://discord.gg/nightdev)\n\nBuilding BetterTTV\n===\n\nGetting the essentials\n---\n1. Install nodejs.\n2. Run ```npm install``` within the BetterTTV directory.\n\nDevelopment\n----\n\nWe use webpack to concatenate all of the files and templates into one. \nJust run the following command from the BetterTTV directory to start a dev server.\n\n```\nnpm start\n```\n\nA webserver will start and you are able to use the development version of BetterTTV on Twitch using this userscript in a script manager like TamperMonkey:\n\n```\n// ==UserScript==\n// @name         BetterTTV Development\n// @description  Enhances Twitch with new features, emotes, and more.\n// @namespace    http://betterttv.com/\n// @copyright    NightDev, LLC\n// @icon         https://cdn.betterttv.net/assets/logos/bttv_logo.png\n// @version      0.0.1\n// @match        https://*.twitch.tv/*\n// @grant        none\n// ==/UserScript==\n\n(function betterttv() {\n    const script = document.createElement('script');\n    script.type = 'text/javascript';\n    script.src = 'http://127.0.0.1:2888/betterttv.js';\n    const head = document.getElementsByTagName('head')[0];\n    if (!head) return;\n    head.appendChild(script);\n})()\n```\n\nOnce installed you should disable BetterTTV's main extension so BetterTTV will only be loaded from your computer.\n\n**Debug Messages:**\n\nIn order to receive debug messages inside the browser's console log, you must toggle the consoleLog localStorage setting.\n\nType this in the JavaScript console to enable console logging:\n```\nBetterTTV.settings.set('consoleLog', true);\n```\n\nLinting\n---\nWe use [ESLint](https://eslint.org/) to ensure a consistent code style and avoid buggy code.\n\nRunning ```npm run lint``` will automatically check for any errors in the code. Please fix any errors before creating a pull request. Any warnings produced prior to your changes can be ignored.\n\n**Live Linting with Sublime Text:**\n\nIf you use Sublime Text as your text editor, you can set it up to highlight any errors that ESLint would throw in real-time.\n\n1. Get ESLint using ```npm install eslint```\n2. Install [Sublime Package Control](https://packagecontrol.io/installation)\n3. Install [SublimeLinter](https://www.sublimelinter.com/en/latest/installation.html#installing-via-pc)\n4. Install [SublimeLinter-eslint](https://github.com/roadhump/SublimeLinter-eslint#linter-installation)\n\n**Live Linting with VSCode:**\n\nIf you use VSCode as your text editor, you can set it up to highlight any errors that ESLint would throw in real-time.\n\n1. Get ESLint using ```npm install eslint```\n2. Install the ESLint extension from the extensions marketplace\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxwlang%2Fbttv-highlight-deleted-messages","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaxwlang%2Fbttv-highlight-deleted-messages","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxwlang%2Fbttv-highlight-deleted-messages/lists"}