Disable YouTube Watch Later Autoplay
Watch individual videos that you saved for later without autoplaying all of them.
¿Qué es Disable YouTube Watch Later Autoplay?
Disable YouTube Watch Later Autoplay es una extensión de Chrome desarrollada por jacamera, y su función principal es "Watch individual videos that you saved for later without autoplaying all of them.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Disable YouTube Watch Later Autoplay
Descarga archivos de extensión Disable YouTube Watch Later Autoplay en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Disable YouTube Watch Later Autoplay |
ID | pipapjplioodfcahamejlgfloniakbpa |
URL Oficial | https://chromewebstore.google.com/detail/disable-youtube-watch-lat/pipapjplioodfcahamejlgfloniakbpa |
Descripción | Watch individual videos that you saved for later without autoplaying all of them. |
Tamaño del Archivo | 9.88 KB |
Cantidad de Instalaciones | 645 |
Versión Actual | 1.0.4 |
Última Actualización | 2023-09-25 |
Fecha de Publicación | 2022-03-21 |
Calificación | 4.50/5 Total de 16 Calificaciones |
Desarrollador | jacamera |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/jacamera/disable-youtube-watch-later-autoplay |
URL de la Página de Ayuda | https://github.com/jacamera/disable-youtube-watch-later-autoplay |
Idiomas Soportados | 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" } } |