Video ads skipper
Save time while browsing the internet and get rid of tiresome ads!
Что такое Video ads skipper?
Video ads skipper - это расширение Chrome, разработанное admin, и его основная функция - "Save time while browsing the internet and get rid of tiresome ads!".
Снимки экрана расширения
Скачать файл CRX расширения Video ads skipper
Скачайте файлы расширений Video ads skipper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
The add-on allows you to skip ads while browsing youtube. After the first 5 seconds the ad will be skipped and you can enjoy your favorite movie or music clip. Don't waste time on unnecessary ads, focus on the content, use the saved time for yourself!
Основная информация о расширении
Название | |
ID | gdoohnigblfkgnoidfndpghlohkanpfd |
Официальный URL | https://chrome.google.com/webstore/detail/video-ads-skipper/gdoohnigblfkgnoidfndpghlohkanpfd |
Описание | Save time while browsing the internet and get rid of tiresome ads! |
Размер файла | 55.48 KB |
Количество установок | 631 |
Текущая Версия | 2.2.2 |
Последнее Обновление | 2022-11-08 |
Дата публикации | 2022-11-08 |
Разработчик | admin |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video ads skipper", "short_name": "Video ads skipper", "description": "Save time while browsing the internet and get rid of tiresome ads!", "manifest_version": 3, "version": "2.2.2", "background": { "service_worker": "source\/worker.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "source\/content.js" ], "run_at": "document_end", "all_frames": true }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "source\/content_yt.js" ], "run_at": "document_end", "all_frames": false } ], "permissions": [ "storage", "webRequest" ], "host_permissions": [ "*:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "*:\/\/*\/*" ] } ], "icons": { "128": "resource\/logo128.png" } } |