Disable YouTube Watch Later Autoplay
Watch individual videos that you saved for later without autoplaying all of them.
Что такое Disable YouTube Watch Later Autoplay?
Disable YouTube Watch Later Autoplay - это расширение Chrome, разработанное jacamera, и его основная функция - "Watch individual videos that you saved for later without autoplaying all of them.".
Снимки экрана расширения
Скачать файл CRX расширения Disable YouTube Watch Later Autoplay
Скачайте файлы расширений Disable YouTube Watch Later Autoplay в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This browser extension disables the Watch Later autoplay behavior when selecting a video from the Watch Later list. The YouTube Watch Later feature lets users save a video to watch at a later time. When selecting a video from the Watch Later list YouTube will then always autoplay every subsequent video from the list. This happens because YouTube treats the Watch Later list just like any other playlist and there is no way to disable autoplay when viewing videos in a playlist. Once installed, the extension works automatically. When you click on a video on the Watch Later list the extension will remove the playlist parameters from the video URL, allowing you to watch the video or copy the URL without the default autoplaying playlist behavior.
Основная информация о расширении
Название | Disable YouTube Watch Later Autoplay |
ID | pipapjplioodfcahamejlgfloniakbpa |
Официальный URL | https://chromewebstore.google.com/detail/disable-youtube-watch-lat/pipapjplioodfcahamejlgfloniakbpa |
Описание | Watch individual videos that you saved for later without autoplaying all of them. |
Размер файла | 9.88 KB |
Количество установок | 645 |
Текущая Версия | 1.0.4 |
Последнее Обновление | 2023-09-25 |
Дата публикации | 2022-03-21 |
Рейтинг | 4.50/5 Всего 16 оценок |
Разработчик | jacamera |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/jacamera/disable-youtube-watch-later-autoplay |
URL страницы помощи | https://github.com/jacamera/disable-youtube-watch-later-autoplay |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Disable YouTube Watch Later Autoplay", "description": "Watch individual videos that you saved for later without autoplaying all of them.", "version": "1.0.4", "manifest_version": 3, "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "host_permissions": [ "https:\/\/*.youtube.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "content.js" ] } ], "background": { "service_worker": "background.js" } } |