Youtube Shorts Auto Scroll - Productivity++

Automatically scrolls when a Youtube Short ends.

Τι είναι το Youtube Shorts Auto Scroll - Productivity++;

Το Youtube Shorts Auto Scroll - Productivity++ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Productivity ++, και η κύρια λειτουργία του είναι "Automatically scrolls when a Youtube Short ends.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Youtube Shorts Auto Scroll - Productivity++

Λήψη αρχείων επέκτασης Youtube Shorts Auto Scroll - Productivity++ σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Youtube Shorts Auto Scroll - Productivity++ Youtube Shorts Auto Scroll - Productivity++
ID bmjbgjndjeinofbgoanhkdgeclbfdbpm
Επίσημο URL https://chromewebstore.google.com/detail/youtube-shorts-auto-scrol/bmjbgjndjeinofbgoanhkdgeclbfdbpm
Περιγραφή Automatically scrolls when a Youtube Short ends.
Μέγεθος Αρχείου 618 KB
Αριθμός Εγκαταστάσεων 332
Τρέχουσα Έκδοση 69.420
Τελευταία Ενημέρωση 2023-05-30
Ημερομηνία Δημοσίευσης 2023-05-29
Αξιολόγηση 3.67/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Productivity ++
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
    ]
}