TTV ad-block
Block ads on that certain streaming website
Qu'est-ce que TTV ad-block ?
TTV ad-block est une extension Chrome développée par odensc, et sa fonction principale est "Block ads on that certain streaming website".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension TTV ad-block
Téléchargez les fichiers d'extension TTV ad-block 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
Extension to block ads on Twitch.tv. Open-source on GitHub! https://github.com/odensc/ttv-ublock NOTE: This extension is in no way affiliated with Twitch Interactive, Inc. Amazon.com, Inc., or any company mentioned on this page.
Informations de Base sur l'Extension
Nom | |
ID | kndhknfnihidhcfnaacnndbolonbimai |
URL Officiel | https://chrome.google.com/webstore/detail/ttv-ad-block/kndhknfnihidhcfnaacnndbolonbimai |
Description | Block ads on that certain streaming website |
Taille du Fichier | 4.4 KB |
Nombre d'Installations | 68,248 |
Version Actuelle | 2.1.0 |
Dernière Mise à Jour | 2020-11-26 |
Date de Publication | 2020-11-15 |
Évaluation | 4.02/5 Total 384 Évaluations |
Développeur | odensc |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TTV ad-block", "version": "2.1.0", "description": "Block ads on that certain streaming website", "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/www.twitch.tv\/*", "*:\/\/player.twitch.tv\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "options_ui": { "page": "options.html", "open_in_tab": true }, "permissions": [ "*:\/\/*.twitch.tv\/*", "*:\/\/*.ttvnw.net\/*", "webRequest", "webRequestBlocking" ] } |