Stop Youtube Autoplay
This extension allows you to disable autoplay by default on Youtube
Что такое Stop Youtube Autoplay?
Stop Youtube Autoplay - это расширение Chrome, разработанное Joseph Feld, и его основная функция - "This extension allows you to disable autoplay by default on Youtube".
Снимки экрана расширения
Скачать файл CRX расширения Stop Youtube Autoplay
Скачайте файлы расширений Stop Youtube Autoplay в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension automatically disables the feature where Youtube will automatically play the next suggested video. You can just click it off manually, but you need to remember to do that every time and it wastes precious seconds you could be using to watch more Youtube. There is also an option to permanently enable autoplay (if you actually want autoplay on) by flipping the switch in the extension popup. Feel free to contact me if you find any issues or have any suggestions. This extension is not intended to stop videos from automatically playing when you open a new tab. It only stops the next suggested video from playing.
Основная информация о расширении
Название | |
ID | npcghnpganhnghapekiicaeiobnhbbfa |
Официальный URL | https://chrome.google.com/webstore/detail/stop-youtube-autoplay/npcghnpganhnghapekiicaeiobnhbbfa |
Описание | This extension allows you to disable autoplay by default on Youtube |
Размер файла | 41.84 KB |
Количество установок | 5,000 |
Текущая Версия | 1.3 |
Последнее Обновление | 2018-10-29 |
Дата публикации | 2018-10-29 |
Рейтинг | 3.02/5 Всего 60 оценок |
Разработчик | Joseph Feld |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Stop Youtube Autoplay", "short_name": "No Autoplay", "description": "This extension allows you to disable autoplay by default on Youtube", "version": "1.3", "browser_action": { "default_icon": "icon128.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage", "tabs", "https:\/\/www.youtube.com\/*", "http:\/\/www.youtube.com\/*" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "matches": [ "https:\/\/www.youtube.com\/watch*", "http:\/\/www.youtube.com\/watch*" ], "scripts": [ "background.js" ], "persistent": false } } |