Auto Youtube Shorts Scroll Down

Auto Youtube Shorts Scroll Down

ما هو Auto Youtube Shorts Scroll Down؟

Auto Youtube Shorts Scroll Down هو إضافة Chrome تم تطويرها بواسطة wonkyungup، والميزة الرئيسية لها هي "Auto Youtube Shorts Scroll Down".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Auto Youtube Shorts Scroll Down

قم بتنزيل ملفات الامتداد Auto Youtube Shorts Scroll Down بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        A switch is created at the top inside the video.
If there is no switch, it will refresh the page.

It is a test project made for personal study, so I would appreciate it if you could understand it even if you fix it late.
The code has been posted on Github.

If you have any additional or uncomfortable points while using it, please send us a review or e-mail and we will respond.

Version 1.0.7
  - ADD: dislike show
  - FIX: scroll Event check, to many event                    

معلومات أساسية عن التمديد

الاسم Auto Youtube Shorts Scroll Down Auto Youtube Shorts Scroll Down
ID bfofdkanfmkkbngkmhmcjichambccene
عنوان URL الرسمي https://chrome.google.com/webstore/detail/auto-youtube-shorts-scrol/bfofdkanfmkkbngkmhmcjichambccene
الوصف Auto Youtube Shorts Scroll Down
حجم الملف 274 KB
عدد التثبيتات 258
النسخة الحالية 1.0.7
آخر تحديث 2023-06-25
تاريخ النشر 2023-02-23
تقييم 2.67/5 مجموع تقييمات 3
المطور wonkyungup
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Youtube Shorts Scroll Down",
    "manifest_version": 3,
    "version": "1.0.7",
    "permissions": [
        "tabs"
    ],
    "description": "Auto Youtube Shorts Scroll Down",
    "icons": {
        "16": "16x16.png",
        "32": "32x32.png",
        "48": "48x48.png"
    },
    "action": {
        "default_icon": {
            "16": "16x16.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/shorts\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}