Twitch - Remove Top Cheer
This extension removes the top cheer from the top of chat on twitch.tv
Qu'est-ce que Twitch - Remove Top Cheer ?
Twitch - Remove Top Cheer est une extension Chrome développée par josh.m.correia, et sa fonction principale est "This extension removes the top cheer from the top of chat on twitch.tv".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Twitch - Remove Top Cheer
Téléchargez les fichiers d'extension Twitch - Remove Top Cheer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
This is a very simple extension that has one function: to remove the top cheer from the top of chat on twitch.tv
Informations de Base sur l'Extension
Nom | |
ID | plhdimgjjobkjbdngkdfenkcdfipjhfc |
URL Officiel | https://chrome.google.com/webstore/detail/twitch-remove-top-cheer/plhdimgjjobkjbdngkdfenkcdfipjhfc |
Description | This extension removes the top cheer from the top of chat on twitch.tv |
Taille du Fichier | 39.8 KB |
Nombre d'Installations | 88 |
Version Actuelle | 1.03 |
Dernière Mise à Jour | 2019-02-17 |
Date de Publication | 2019-02-17 |
Évaluation | 4.00/5 Total 4 Évaluations |
Développeur | josh.m.correia |
Type de Paiement | free |
Langues Prises en Charge | 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" } ] } |