Ad Blocker for YouTube
Watch YouTube without any ads!
Что такое Ad Blocker for YouTube?
Ad Blocker for YouTube - это расширение Chrome, разработанное Peter Pi, и его основная функция - "Watch YouTube without any ads!".
Снимки экрана расширения
Скачать файл CRX расширения Ad Blocker for YouTube
Скачайте файлы расширений Ad Blocker for YouTube в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
IMPORTANT: - The pop-up bubble on the top right corner will not work in tabs that were open prior to installation. After installing this extension, either reload your open tabs or restart Chrome. With this extension, you can: - Skip ads prior to the actual video content - Blocks any pop-up ads during the video within the frame
Основная информация о расширении
Название | Ad Blocker for YouTube |
ID | gmcmlgfecmkefmkgbbnggmamclbmikbi |
Официальный URL | https://chromewebstore.google.com/detail/ad-blocker-for-youtube/gmcmlgfecmkefmkgbbnggmamclbmikbi |
Описание | Watch YouTube without any ads! |
Размер файла | 23.32 KB |
Количество установок | 23,302 |
Текущая Версия | 1.0.6 |
Последнее Обновление | 2020-01-30 |
Дата публикации | 2020-01-25 |
Рейтинг | 4.27/5 Всего 45 оценок |
Разработчик | Peter Pi |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Ad Blocker for YouTube", "version": "1.0.6", "description": "Watch YouTube without any ads!", "author": "Peter Pi", "icons": { "128": "icon_128.png" }, "page_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "content.js" ] } ], "permissions": [ "activeTab" ] } |