YouTube Shorts Autoscroll
Automatically scrolls to the next YouTube Shorts video when one ends.
¿Qué es YouTube Shorts Autoscroll?
YouTube Shorts Autoscroll es una extensión de Chrome desarrollada por panthebig, y su función principal es "Automatically scrolls to the next YouTube Shorts video when one ends.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión YouTube Shorts Autoscroll
Descarga archivos de extensión YouTube Shorts Autoscroll 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
Introducing the Shorts Auto-Scroll Extension – an open-source revolutionary tool designed for the modern content consumer. This extension seamlessly integrates with your YouTube Shorts experience, allowing you to enjoy an uninterrupted flow of bite-sized videos. No more manual scrolling or endless clicking; with the Auto-Scroll feature, your favorite Shorts are delivered to you in a continuous stream, tailored to your interests. Dive into a world of creativity, humor, and inspiration, all with the effortless ease of automatic scrolling. Download the extension today and redefine the way you explore YouTube Shorts ! Open-Source Repository: https://github.com/panthebig/Youtube-Shorts-Autoscroller-Chrome-Extension
Información Básica de la Extensión
Nombre | YouTube Shorts Autoscroll |
ID | dmmihimcjbhpmpkolhnelmhbknfcajmd |
URL Oficial | https://chromewebstore.google.com/detail/youtube-shorts-autoscroll/dmmihimcjbhpmpkolhnelmhbknfcajmd |
Descripción | Automatically scrolls to the next YouTube Shorts video when one ends. |
Tamaño del Archivo | 6.56 KB |
Cantidad de Instalaciones | 399 |
Versión Actual | 1.0 |
Última Actualización | 2023-08-16 |
Fecha de Publicación | 2023-08-16 |
Calificación | 3.50/5 Total de 2 Calificaciones |
Desarrollador | panthebig |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Shorts Autoscroll", "description": "Automatically scrolls to the next YouTube Shorts video when one ends.", "version": "1.0", "permissions": [ "scripting", "webNavigation", "storage" ], "host_permissions": [ "https:\/\/www.youtube.com\/shorts\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/shorts\/*" ], "js": [ ".\/content.js" ] } ], "action": { "default_popup": "popup.html" }, "background": { "service_worker": ".\/background.js" } } |