Ad Accelerator
Detects if a video ad is playing, mutes the video and dramatically increases speed.
¿Qué es Ad Accelerator?
Ad Accelerator es una extensión de Chrome desarrollada por rkarpinski, y su función principal es "Detects if a video ad is playing, mutes the video and dramatically increases speed.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Ad Accelerator
Descarga archivos de extensión Ad Accelerator en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Ad Accelerator |
ID | gpboiedfklodfhngobidfjecdpmccehg |
URL Oficial | https://chromewebstore.google.com/detail/ad-accelerator/gpboiedfklodfhngobidfjecdpmccehg |
Descripción | Detects if a video ad is playing, mutes the video and dramatically increases speed. |
Tamaño del Archivo | 472 KB |
Cantidad de Instalaciones | 10,000 |
Versión Actual | 0.0.0.4 |
Última Actualización | 2024-03-06 |
Fecha de Publicación | 2023-11-15 |
Calificación | 4.46/5 Total de 69 Calificaciones |
Desarrollador | rkarpinski |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Ayuda | https://github.com/rkk3/ad-accelerator |
Idiomas Soportados | 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" } } |