Youtube Shorts Auto Scroll - Productivity++

Automatically scrolls when a Youtube Short ends.

¿Qué es Youtube Shorts Auto Scroll - Productivity++?

Youtube Shorts Auto Scroll - Productivity++ es una extensión de Chrome desarrollada por Productivity ++, y su función principal es "Automatically scrolls when a Youtube Short ends.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Youtube Shorts Auto Scroll - Productivity++

Descarga archivos de extensión Youtube Shorts Auto Scroll - Productivity++ 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

                        You can also change weather it automatically scrolls in the popup. Instructions will be given when the extension is installed!

Made with ❤️ from the team at Productivity ++.

New version:
    Fixed bug where if you were on YouTube and then went to a short, it wouldn't work until reload.
    Other bugs fixed                    

Información Básica de la Extensión

Nombre Youtube Shorts Auto Scroll - Productivity++ Youtube Shorts Auto Scroll - Productivity++
ID bmjbgjndjeinofbgoanhkdgeclbfdbpm
URL Oficial https://chromewebstore.google.com/detail/youtube-shorts-auto-scrol/bmjbgjndjeinofbgoanhkdgeclbfdbpm
Descripción Automatically scrolls when a Youtube Short ends.
Tamaño del Archivo 618 KB
Cantidad de Instalaciones 332
Versión Actual 69.420
Última Actualización 2023-05-30
Fecha de Publicación 2023-05-29
Calificación 3.67/5 Total de 3 Calificaciones
Desarrollador Productivity ++
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube Shorts Auto Scroll - Productivity++",
    "version": "69.420",
    "author": {
        "email": "[email protected]"
    },
    "description": "Automatically scrolls when a Youtube Short ends.",
    "action": {
        "default_icon": {
            "16": "icons\/16.png",
            "24": "icons\/24.png",
            "32": "icons\/32.png"
        },
        "default_title": "YT Shorts Autoscroll",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "scroll-plain.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "scripting",
        "activeTab"
    ]
}