Ad Accelerator
Detects if a video ad is playing, mutes the video and dramatically increases speed.
Cos'è Ad Accelerator?
Ad Accelerator è un'estensione di Chrome sviluppata da rkarpinski, e la sua funzione principale è "Detects if a video ad is playing, mutes the video and dramatically increases speed.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Ad Accelerator
Scarica i file di estensione Ad Accelerator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Ad Accelerator |
ID | gpboiedfklodfhngobidfjecdpmccehg |
URL Ufficiale | https://chromewebstore.google.com/detail/ad-accelerator/gpboiedfklodfhngobidfjecdpmccehg |
Descrizione | Detects if a video ad is playing, mutes the video and dramatically increases speed. |
Dimensione del File | 472 KB |
Conteggio Installazioni | 10,000 |
Versione Corrente | 0.0.0.4 |
Ultimo Aggiornamento | 2024-03-06 |
Data di Pubblicazione | 2023-11-15 |
Valutazione | 4.46/5 Totale 69 Valutazioni |
Sviluppatore | rkarpinski |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://github.com/rkk3/ad-accelerator |
Lingue Supportate | 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" } } |