Stop Youtube Autoplay Timer
This extension allows you to set a timer on Youtube's Autoplay
Что такое Stop Youtube Autoplay Timer?
Stop Youtube Autoplay Timer - это расширение Chrome, разработанное park8, и его основная функция - "This extension allows you to set a timer on Youtube's Autoplay".
Снимки экрана расширения
Скачать файл CRX расширения Stop Youtube Autoplay Timer
Скачайте файлы расширений Stop Youtube Autoplay Timer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Do you fall asleep to Youtube videos on autoplay and wake up to still find Youtube videos playing? This extension will allow you to set a timer on the autoplay toggle so videos will stop auto playing
Основная информация о расширении
Название | Stop Youtube Autoplay Timer |
ID | amklgdeinpjclemjbepgimpkaknhfaem |
Официальный URL | https://chromewebstore.google.com/detail/stop-youtube-autoplay-tim/amklgdeinpjclemjbepgimpkaknhfaem |
Описание | This extension allows you to set a timer on Youtube's Autoplay |
Размер файла | 59.76 KB |
Количество установок | 95 |
Текущая Версия | 1.1 |
Последнее Обновление | 2020-08-19 |
Дата публикации | 2020-08-17 |
Разработчик | park8 |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "matches": [ "https:\/\/www.youtube.com\/watch*", "http:\/\/www.youtube.com\/watch*" ], "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_popup": "widget.html" }, "icons": { "128": "res\/icon128.png" }, "description": "This extension allows you to set a timer on Youtube's Autoplay", "manifest_version": 2, "name": "Stop Youtube Autoplay Timer", "permissions": [ "activeTab", "storage", "tabs", "https:\/\/www.youtube.com\/*", "http:\/\/www.youtube.com\/*" ], "short_name": "Timed Autoplay", "version": "1.1" } |