YouTube Skip Ads
YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'
Что такое YouTube Skip Ads?
YouTube Skip Ads - это расширение Chrome, разработанное admin, и его основная функция - "YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'".
Снимки экрана расширения
Скачать файл CRX расширения YouTube Skip Ads
Скачайте файлы расширений YouTube Skip Ads в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. This addon auto clicks the 'skip ad button'
Основная информация о расширении
Название | |
ID | jnhhfkebfgdllkmohmfhdmhkfooolbmb |
Официальный URL | https://chrome.google.com/webstore/detail/youtube-skip-ads/jnhhfkebfgdllkmohmfhdmhkfooolbmb |
Описание | YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button' |
Размер файла | 12.73 KB |
Количество установок | 3,053 |
Текущая Версия | 1.0.6 |
Последнее Обновление | 2022-10-31 |
Дата публикации | 2022-10-31 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | admin |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Skip Ads", "short_name": "YouTube Skip Ads", "description": "YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'", "manifest_version": 3, "version": "1.0.6", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_end", "all_frames": true }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_yt.js" ], "run_at": "document_end", "all_frames": false } ], "permissions": [ "storage", "webRequest" ], "host_permissions": [ "*:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "*:\/\/*\/*" ] } ], "icons": { "128": "logob.png" } } |