YouTube Shorts Autoscroll

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

YouTube Shorts Autoscroll क्या है?

YouTube Shorts Autoscroll panthebig द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically scrolls to the next YouTube Shorts video when one ends."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YouTube Shorts Autoscroll एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    }
}