Youtube Shorts Auto Scroll - Productivity++

Automatically scrolls when a Youtube Short ends.

Co to jest Youtube Shorts Auto Scroll - Productivity++?

Youtube Shorts Auto Scroll - Productivity++ to rozszerzenie Chrome opracowane przez Productivity ++, a jego główną funkcją jest „Automatically scrolls when a Youtube Short ends.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Youtube Shorts Auto Scroll - Productivity++

Pobierz pliki rozszerzeń Youtube Shorts Auto Scroll - Productivity++ w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Youtube Shorts Auto Scroll - Productivity++ Youtube Shorts Auto Scroll - Productivity++
ID bmjbgjndjeinofbgoanhkdgeclbfdbpm
Oficjalny URL https://chromewebstore.google.com/detail/youtube-shorts-auto-scrol/bmjbgjndjeinofbgoanhkdgeclbfdbpm
Opis Automatically scrolls when a Youtube Short ends.
Rozmiar pliku 618 KB
Liczba instalacji 332
Aktualna Wersja 69.420
Ostatnia Aktualizacja 2023-05-30
Data Publikacji 2023-05-29
Ocena 3.67/5 Łącznie 3 Oceny
Deweloper Productivity ++
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}