Twitch - Remove Top Cheer
This extension removes the top cheer from the top of chat on twitch.tv
Cos'è Twitch - Remove Top Cheer?
Twitch - Remove Top Cheer è un'estensione di Chrome sviluppata da josh.m.correia, e la sua funzione principale è "This extension removes the top cheer from the top of chat on twitch.tv".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitch - Remove Top Cheer
Scarica i file di estensione Twitch - Remove Top Cheer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This is a very simple extension that has one function: to remove the top cheer from the top of chat on twitch.tv
Informazioni di Base sull'Estensione
Nome | |
ID | plhdimgjjobkjbdngkdfenkcdfipjhfc |
URL Ufficiale | https://chrome.google.com/webstore/detail/twitch-remove-top-cheer/plhdimgjjobkjbdngkdfenkcdfipjhfc |
Descrizione | This extension removes the top cheer from the top of chat on twitch.tv |
Dimensione del File | 39.8 KB |
Conteggio Installazioni | 88 |
Versione Corrente | 1.03 |
Ultimo Aggiornamento | 2019-02-17 |
Data di Pubblicazione | 2019-02-17 |
Valutazione | 4.00/5 Totale 4 Valutazioni |
Sviluppatore | josh.m.correia |
Tipo di Pagamento | free |
Lingue Supportate | 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" } ] } |