Silent YouTube Ads
Moral silencing of YouTube ads.
Что такое Silent YouTube Ads?
Silent YouTube Ads - это расширение Chrome, разработанное tim, и его основная функция - "Moral silencing of YouTube ads.".
Скачать файл CRX расширения Silent YouTube Ads
Скачайте файлы расширений Silent YouTube Ads в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Silences the YouTube video element when ads play. This will not skip ads until the user has sat through the required delay. This extension will automatically close any ads once YouTube deems them available to close.
Основная информация о расширении
Название | |
ID | gegfmphboiphopkkfgkablkljmlcoldg |
Официальный URL | https://chrome.google.com/webstore/detail/silent-youtube-ads/gegfmphboiphopkkfgkablkljmlcoldg |
Описание | Moral silencing of YouTube ads. |
Размер файла | 5.61 KB |
Количество установок | 97 |
Текущая Версия | 0.1.4 |
Последнее Обновление | 2015-05-22 |
Дата публикации | 2015-05-22 |
Рейтинг | 4.38/5 Всего 8 оценок |
Разработчик | tim |
Тип оплаты | free |
Поддерживаемые языки | en,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Silent YouTube Ads", "author": "Tim Branyen (@tbranyen)", "version": "0.1.4", "description": "Moral silencing of YouTube ads.", "default_locale": "en", "content_scripts": [ { "matches": [ "http:\/\/*.youtube.com\/watch*", "https:\/\/*.youtube.com\/watch*" ], "js": [ "js\/contentscript.js" ], "run_at": "document_end" } ], "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ "js\/**\/*", "js\/contentscript.js.map" ] } |