Youtube Shorts Auto Scroll - Productivity++

Automatically scrolls when a Youtube Short ends.

Hvad er Youtube Shorts Auto Scroll - Productivity++?

Youtube Shorts Auto Scroll - Productivity++ er en Chrome-udvidelse udviklet af Productivity ++, og dens hovedfunktion er "Automatically scrolls when a Youtube Short ends.".

Udvidelsesskærmbilleder

screenshot

Download Youtube Shorts Auto Scroll - Productivity++-udvidelses-CRX-fil

Download Youtube Shorts Auto Scroll - Productivity++-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Youtube Shorts Auto Scroll - Productivity++ Youtube Shorts Auto Scroll - Productivity++
ID bmjbgjndjeinofbgoanhkdgeclbfdbpm
Officiel URL https://chromewebstore.google.com/detail/youtube-shorts-auto-scrol/bmjbgjndjeinofbgoanhkdgeclbfdbpm
Beskrivelse Automatically scrolls when a Youtube Short ends.
Filstørrelse 618 KB
Antal Installationer 332
Nuværende Version 69.420
Senest Opdateret 2023-05-30
Udgivelsesdato 2023-05-29
Bedømmelse 3.67/5 Samlet 3 Bedømmelser
Udvikler Productivity ++
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    ]
}