YouTube Shorts Autoscroll

Automatically scrolls to the next YouTube Shorts video when one ends.

Τι είναι το YouTube Shorts Autoscroll;

Το YouTube Shorts Autoscroll είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον panthebig, και η κύρια λειτουργία του είναι "Automatically scrolls to the next YouTube Shorts video when one ends.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης YouTube Shorts Autoscroll

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

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

                        Introducing the Shorts Auto-Scroll Extension – an open-source revolutionary tool designed for the modern content consumer. This extension seamlessly integrates with your YouTube Shorts experience, allowing you to enjoy an uninterrupted flow of bite-sized videos. No more manual scrolling or endless clicking; with the Auto-Scroll feature, your favorite Shorts are delivered to you in a continuous stream, tailored to your interests. Dive into a world of creativity, humor, and inspiration, all with the effortless ease of automatic scrolling. Download the extension today and redefine the way you explore YouTube Shorts !



Open-Source Repository:
https://github.com/panthebig/Youtube-Shorts-Autoscroller-Chrome-Extension                    

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

Όνομα YouTube Shorts Autoscroll YouTube Shorts Autoscroll
ID dmmihimcjbhpmpkolhnelmhbknfcajmd
Επίσημο URL https://chromewebstore.google.com/detail/youtube-shorts-autoscroll/dmmihimcjbhpmpkolhnelmhbknfcajmd
Περιγραφή Automatically scrolls to the next YouTube Shorts video when one ends.
Μέγεθος Αρχείου 6.56 KB
Αριθμός Εγκαταστάσεων 399
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2023-08-16
Ημερομηνία Δημοσίευσης 2023-08-16
Αξιολόγηση 3.50/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής panthebig
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Shorts Autoscroll",
    "description": "Automatically scrolls to the next YouTube Shorts video when one ends.",
    "version": "1.0",
    "permissions": [
        "scripting",
        "webNavigation",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/shorts\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/shorts\/*"
            ],
            "js": [
                ".\/content.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": ".\/background.js"
    }
}