Twitch MuteAds
Mute Ads on Twitch
Qu'est-ce que Twitch MuteAds ?
Twitch MuteAds est une extension Chrome développée par spddl, et sa fonction principale est "Mute Ads on Twitch".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Twitch MuteAds
Téléchargez les fichiers d'extension Twitch MuteAds 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
Mutes advertisements on Twitch and reactivates them after the advertisement.
Informations de Base sur l'Extension
Nom | Twitch MuteAds |
ID | jpcjejphfbpbnjahcnfgcjjodoopgdgb |
URL Officiel | https://chromewebstore.google.com/detail/twitch-muteads/jpcjejphfbpbnjahcnfgcjjodoopgdgb |
Description | Mute Ads on Twitch |
Taille du Fichier | 10.13 KB |
Nombre d'Installations | 44 |
Version Actuelle | 0.0.3 |
Dernière Mise à Jour | 2021-01-26 |
Date de Publication | 2020-12-12 |
Évaluation | 4.00/5 Total 2 Évaluations |
Développeur | spddl |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/spddl/Twitch-MuteAds |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Twitch MuteAds", "description": "Mute Ads on Twitch", "version": "0.0.3", "icons": { "48": "volume_off_googred500_48x48.png", "128": "volume_off_googred500_108x108.png", "256": "volume_off_googred500_144x144.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.twitch.tv\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "background": { "service_worker": "background.js" }, "permissions": [ "tabs" ], "host_permissions": [ "*:\/\/*.twitch.tv\/*" ], "action": { "default_title": "Twitch MuteAds", "default_icon": { "48": "volume_off_googred500_48x48.png", "128": "volume_off_googred500_108x108.png", "256": "volume_off_googred500_144x144.png" } } } |