Twitch - Remove Top Cheer
This extension removes the top cheer from the top of chat on twitch.tv
Was ist Twitch - Remove Top Cheer?
Twitch - Remove Top Cheer ist eine Chrome-Erweiterung, die von josh.m.correia entwickelt wurde, und ihr Hauptmerkmal ist "This extension removes the top cheer from the top of chat on twitch.tv".
Erweiterungsscreenshots
Twitch - Remove Top Cheer-Erweiterungs-CRX-Datei herunterladen
Laden Sie Twitch - Remove Top Cheer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This is a very simple extension that has one function: to remove the top cheer from the top of chat on twitch.tv
Grundlegende Informationen zur Erweiterung
Name | |
ID | plhdimgjjobkjbdngkdfenkcdfipjhfc |
Offizielle URL | https://chrome.google.com/webstore/detail/twitch-remove-top-cheer/plhdimgjjobkjbdngkdfenkcdfipjhfc |
Beschreibung | This extension removes the top cheer from the top of chat on twitch.tv |
Dateigröße | 39.8 KB |
Installationsanzahl | 88 |
Aktuelle Version | 1.03 |
Letztes Update | 2019-02-17 |
Veröffentlichungsdatum | 2019-02-17 |
Bewertung | 4.00/5 Insgesamt 4 Bewertungen |
Entwickler | josh.m.correia |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitch - Remove Top Cheer", "description": "This extension removes the top cheer from the top of chat on twitch.tv", "version": "1.03", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon.png" }, "permissions": [ "activeTab", "storage", "tabs" ], "background": { "scripts": [ "jquery-3.2.1.min.js", "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/www.twitch.tv\/*" ], "js": [ "jquery-3.2.1.min.js", "remove_top_cheer.js" ], "run_at": "document_end" } ] } |