Ad Accelerator
Detects if a video ad is playing, mutes the video and dramatically increases speed.
Qu'est-ce que Ad Accelerator ?
Ad Accelerator est une extension Chrome développée par rkarpinski, et sa fonction principale est "Detects if a video ad is playing, mutes the video and dramatically increases speed.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Ad Accelerator
Téléchargez les fichiers d'extension Ad Accelerator 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
Skip through annoying advertisements instantly on sites like Youtube & Hulu. * Automatically utilize skip ad button * Automatically mute ads * Automatically increases ad speed to the maximum allowed speed Skip through ads with Ad Accelerator and spend more time watching videos. Completely free and open sourced on github!! Support us by leaving a review or by contributing a pull request.
Informations de Base sur l'Extension
Nom | Ad Accelerator |
ID | gpboiedfklodfhngobidfjecdpmccehg |
URL Officiel | https://chromewebstore.google.com/detail/ad-accelerator/gpboiedfklodfhngobidfjecdpmccehg |
Description | Detects if a video ad is playing, mutes the video and dramatically increases speed. |
Taille du Fichier | 472 KB |
Nombre d'Installations | 10,000 |
Version Actuelle | 0.0.0.4 |
Dernière Mise à Jour | 2024-03-06 |
Date de Publication | 2023-11-15 |
Évaluation | 4.46/5 Total 69 Évaluations |
Développeur | rkarpinski |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://github.com/rkk3/ad-accelerator |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Ad Accelerator", "version": "0.0.0.4", "description": "Detects if a video ad is playing, mutes the video and dramatically increases speed.", "permissions": [ "webNavigation", "scripting" ], "host_permissions": [ "*:\/\/*.youtube.com\/*", "*:\/\/www.hulu.com\/watch\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*", "*:\/\/www.hulu.com\/watch\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "icons": { "16": "assets\/images\/icon16.png", "32": "assets\/images\/icon32.png", "48": "assets\/images\/icon48.png", "128": "assets\/images\/icon128.png" } } |