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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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