Youtube Shorts Auto Scroll - Productivity++

Automatically scrolls when a Youtube Short ends.

Vad är Youtube Shorts Auto Scroll - Productivity++?

Youtube Shorts Auto Scroll - Productivity++ är en Chrome-tillägg utvecklad av Productivity ++, och dess huvudfunktion är "Automatically scrolls when a Youtube Short ends.".

Tilläggsskärmbilder

screenshot

Ladda ner Youtube Shorts Auto Scroll - Productivity++-förlängningens CRX-fil

Ladda ner Youtube Shorts Auto Scroll - Productivity++-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Youtube Shorts Auto Scroll - Productivity++ Youtube Shorts Auto Scroll - Productivity++
ID bmjbgjndjeinofbgoanhkdgeclbfdbpm
Officiell webbadress https://chromewebstore.google.com/detail/youtube-shorts-auto-scrol/bmjbgjndjeinofbgoanhkdgeclbfdbpm
Beskrivning Automatically scrolls when a Youtube Short ends.
Filstorlek 618 KB
Antal Installationer 332
Aktuell Version 69.420
Senast Uppdaterad 2023-05-30
Publiceringsdatum 2023-05-29
Betyg 3.67/5 Totalt 3 Betyg
Utvecklare Productivity ++
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}