Ad Accelerator
Detects if a video ad is playing, mutes the video and dramatically increases speed.
Что такое Ad Accelerator?
Ad Accelerator - это расширение Chrome, разработанное rkarpinski, и его основная функция - "Detects if a video ad is playing, mutes the video and dramatically increases speed.".
Снимки экрана расширения
Скачать файл CRX расширения Ad Accelerator
Скачайте файлы расширений Ad Accelerator в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Ad Accelerator |
ID | gpboiedfklodfhngobidfjecdpmccehg |
Официальный URL | https://chromewebstore.google.com/detail/ad-accelerator/gpboiedfklodfhngobidfjecdpmccehg |
Описание | Detects if a video ad is playing, mutes the video and dramatically increases speed. |
Размер файла | 472 KB |
Количество установок | 10,000 |
Текущая Версия | 0.0.0.4 |
Последнее Обновление | 2024-03-06 |
Дата публикации | 2023-11-15 |
Рейтинг | 4.46/5 Всего 69 оценок |
Разработчик | rkarpinski |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы помощи | https://github.com/rkk3/ad-accelerator |
Поддерживаемые языки | 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" } } |