Youtube Shorts Auto Scroll - Productivity++

Automatically scrolls when a Youtube Short ends.

Qu'est-ce que Youtube Shorts Auto Scroll - Productivity++ ?

Youtube Shorts Auto Scroll - Productivity++ est une extension Chrome développée par Productivity ++, et sa fonction principale est "Automatically scrolls when a Youtube Short ends.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Youtube Shorts Auto Scroll - Productivity++

Téléchargez les fichiers d'extension Youtube Shorts Auto Scroll - Productivity++ au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Youtube Shorts Auto Scroll - Productivity++ Youtube Shorts Auto Scroll - Productivity++
ID bmjbgjndjeinofbgoanhkdgeclbfdbpm
URL Officiel https://chromewebstore.google.com/detail/youtube-shorts-auto-scrol/bmjbgjndjeinofbgoanhkdgeclbfdbpm
Description Automatically scrolls when a Youtube Short ends.
Taille du Fichier 618 KB
Nombre d'Installations 332
Version Actuelle 69.420
Dernière Mise à Jour 2023-05-30
Date de Publication 2023-05-29
Évaluation 3.67/5 Total 3 Évaluations
Développeur Productivity ++
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}