YouTube™ Video AdBlocker Extension
Removes all YouTube™ video and text ads. Lightweight and safe, with minimal required permissions. Works on all websites.
Что такое YouTube™ Video AdBlocker Extension?
YouTube™ Video AdBlocker Extension - это расширение Chrome, разработанное The Creative Joys, и его основная функция - "Removes all YouTube™ video and text ads. Lightweight and safe, with minimal required permissions. Works on all websites.".
Снимки экрана расширения
Скачать файл CRX расширения YouTube™ Video AdBlocker Extension
Скачайте файлы расширений YouTube™ Video AdBlocker Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
* Removes YouTube™ video and text ads. * Works on all websites that contain a YouTube™ video. * Also works with YouTube™ Music.
Основная информация о расширении
Название | |
ID | nomigebahjadndedfgpmnkbaekgjkipi |
Официальный URL | https://chromewebstore.google.com/detail/youtube-video-adblocker-e/nomigebahjadndedfgpmnkbaekgjkipi |
Описание | Removes all YouTube™ video and text ads. Lightweight and safe, with minimal required permissions. Works on all websites. |
Размер файла | 22.71 KB |
Количество установок | 110 |
Текущая Версия | 1.0 |
Последнее Обновление | 2019-01-08 |
Дата публикации | 2020-07-05 |
Разработчик | The Creative Joys |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube\u2122 Video AdBlocker Extension", "short_name": "Ad Blocker", "version": "1.0", "description": "Removes all YouTube\u2122 video and text ads. Lightweight and safe, with minimal required permissions. Works on all websites.", "manifest_version": 2, "icons": { "19": "images\/icon19.png", "38": "images\/icon38.png", "48": "images\/icon48.png", "96": "images\/icon96.png", "128": "images\/icon128.png" }, "background": { "persistent": true, "scripts": [ "adBlockerBg.js" ] }, "page_action": { "default_title": "YouTube\u2122 Video AdBlocker", "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "all_frames": true, "js": [ "adBlockerYt.js" ], "run_at": "document_end" } ] } |