Ad Accelerator
Detects if a video ad is playing, mutes the video and dramatically increases speed.
Co to jest Ad Accelerator?
Ad Accelerator to rozszerzenie Chrome opracowane przez rkarpinski, a jego główną funkcją jest „Detects if a video ad is playing, mutes the video and dramatically increases speed.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Ad Accelerator
Pobierz pliki rozszerzeń Ad Accelerator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Ad Accelerator |
ID | gpboiedfklodfhngobidfjecdpmccehg |
Oficjalny URL | https://chromewebstore.google.com/detail/ad-accelerator/gpboiedfklodfhngobidfjecdpmccehg |
Opis | Detects if a video ad is playing, mutes the video and dramatically increases speed. |
Rozmiar pliku | 472 KB |
Liczba instalacji | 10,000 |
Aktualna Wersja | 0.0.0.4 |
Ostatnia Aktualizacja | 2024-03-06 |
Data Publikacji | 2023-11-15 |
Ocena | 4.46/5 Łącznie 69 Oceny |
Deweloper | rkarpinski |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Pomocy | https://github.com/rkk3/ad-accelerator |
Obsługiwane Języki | 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" } } |