Ad Accelerator
Detects if a video ad is playing, mutes the video and dramatically increases speed.
Co je Ad Accelerator?
Ad Accelerator je rozšíření Chrome vyvinuté rkarpinski, a jeho hlavní funkcí je „Detects if a video ad is playing, mutes the video and dramatically increases speed.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Ad Accelerator
Stáhněte si soubory rozšíření Ad Accelerator ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Ad Accelerator |
ID | gpboiedfklodfhngobidfjecdpmccehg |
Oficiální URL | https://chromewebstore.google.com/detail/ad-accelerator/gpboiedfklodfhngobidfjecdpmccehg |
Popis | Detects if a video ad is playing, mutes the video and dramatically increases speed. |
Velikost souboru | 472 KB |
Počet instalací | 10,000 |
Aktuální Verze | 0.0.0.4 |
Poslední Aktualizace | 2024-03-06 |
Datum Vydání | 2023-11-15 |
Hodnocení | 4.46/5 Celkem 69 Hodnocení |
Vývojář | rkarpinski |
[email protected] | |
Typ Platby | free |
URL Stránky Nápovědy | https://github.com/rkk3/ad-accelerator |
Podporované Jazyky | 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" } } |