Autoplay No More
Disable automatic jumps from current to next video on Youtube, TED, Bing and Vimeo.
Что такое Autoplay No More?
Autoplay No More - это расширение Chrome, разработанное https://www.kiboke-studio.hr, и его основная функция - "Disable automatic jumps from current to next video on Youtube, TED, Bing and Vimeo.".
Снимки экрана расширения
Скачать файл CRX расширения Autoplay No More
Скачайте файлы расширений Autoplay No More в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Disable automatic jumps from current to next video on Youtube, TED, Bing and Vimeo.
Основная информация о расширении
Название | Autoplay No More |
ID | obiogedpmdnfaldjdjmnbpmhjjfnghnj |
Официальный URL | https://chromewebstore.google.com/detail/autoplay-no-more/obiogedpmdnfaldjdjmnbpmhjjfnghnj |
Описание | Disable automatic jumps from current to next video on Youtube, TED, Bing and Vimeo. |
Размер файла | 13.88 KB |
Количество установок | 1,051 |
Текущая Версия | 0.4.2 |
Последнее Обновление | 2023-08-21 |
Дата публикации | 2020-04-16 |
Рейтинг | 3.00/5 Всего 8 оценок |
Разработчик | https://www.kiboke-studio.hr |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://www.kiboke-studio.hr/browser-extensions/ |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Autoplay No More", "description": "Disable automatic jumps from current to next video on Youtube, TED, Bing and Vimeo.", "version": "0.4.2", "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "96": "icons\/96.png", "128": "icons\/128.png" }, "author": "Daniel Kladnik", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "css": [ "data\/youtube.css" ], "js": [ "data\/youtube.js" ] }, { "matches": [ "*:\/\/*.vimeo.com\/*" ], "css": [ "data\/vimeo.css" ], "js": [ "data\/vimeo.js" ] }, { "matches": [ "*:\/\/*.ted.com\/*" ], "js": [ "data\/ted.js" ] }, { "matches": [ "*:\/\/*.bing.com\/videos\/*" ], "js": [ "data\/bing.js" ] } ] } |