Remove YouTube Autoplay
Isn't YouTube autoplay the worst? This removes it
¿Qué es Remove YouTube Autoplay?
Remove YouTube Autoplay es una extensión de Chrome desarrollada por Kareem ElFaramawi, y su función principal es "Isn't YouTube autoplay the worst? This removes it".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Remove YouTube Autoplay
Descarga archivos de extensión Remove YouTube 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
Simple extension to completely disable and remove the YouTube autoplay feature, which would load another video after the current one ends. This extension will continue to work if you: - Delete browser history - Enter incognito mode (After enabling this option in your extension settings) Note that this extension only affects videos that would normally show the autoplay switch, this excludes playlists, livestreams, etc.
Información Básica de la Extensión
Nombre | Remove YouTube Autoplay |
ID | afppjndapmkekhnionfccdnajhdnokhj |
URL Oficial | https://chromewebstore.google.com/detail/remove-youtube-autoplay/afppjndapmkekhnionfccdnajhdnokhj |
Descripción | Isn't YouTube autoplay the worst? This removes it |
Tamaño del Archivo | 1.68 MB |
Cantidad de Instalaciones | 848 |
Versión Actual | 0.1.7 |
Última Actualización | 2023-06-05 |
Fecha de Publicación | 2018-10-06 |
Calificación | 3.57/5 Total de 23 Calificaciones |
Desarrollador | Kareem ElFaramawi |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/krx/chrome-delete-youtube-autoplay |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Remove YouTube Autoplay", "description": "Isn't YouTube autoplay the worst? This removes it", "author": "krx", "version": "0.1.7", "host_permissions": [ "http:\/\/www.youtube.com\/" ], "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "js\/disableAutoplay.js" ], "run_at": "document_end" } ], "action": { "default_icon": "img\/icon_19.png" }, "icons": { "16": "img\/icon_16.png", "48": "img\/icon_48.png", "64": "img\/icon_64.png", "128": "img\/icon_128.png" } } |