Ad Accelerator
Detects if a video ad is playing, mutes the video and dramatically increases speed.
O que é Ad Accelerator?
Ad Accelerator é uma extensão do Chrome desenvolvida por rkarpinski, e sua principal característica é "Detects if a video ad is playing, mutes the video and dramatically increases speed.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Ad Accelerator
Baixe arquivos de extensão Ad Accelerator no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Ad Accelerator |
ID | gpboiedfklodfhngobidfjecdpmccehg |
URL Oficial | https://chromewebstore.google.com/detail/ad-accelerator/gpboiedfklodfhngobidfjecdpmccehg |
Descrição | Detects if a video ad is playing, mutes the video and dramatically increases speed. |
Tamanho do Arquivo | 472 KB |
Contagem de Instalações | 10,000 |
Versão Atual | 0.0.0.4 |
Última Atualização | 2024-03-06 |
Data de Publicação | 2023-11-15 |
Classificação | 4.46/5 Total de 69 Avaliações |
Desenvolvedor | rkarpinski |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Ajuda | https://github.com/rkk3/ad-accelerator |
Idiomas Suportados | 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" } } |