TikTok - Auto Scroller

Extension that does the scrolling for you without the need to touch your mouse. Whenever a TikTok ends, the extension will…

ما هو TikTok - Auto Scroller؟

TikTok - Auto Scroller هو إضافة Chrome تم تطويرها بواسطة browsnerose، والميزة الرئيسية لها هي "Extension that does the scrolling for you without the need to touch your mouse. Whenever a TikTok ends, the extension will…".

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

screenshot

تحميل ملف CRX للإضافة TikTok - Auto Scroller

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

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

                        Extension that does the scrolling for you without the need to touch your mouse. 

Whenever a TikTok ends, the extension will automatically scroll to the next one for you. Great for doing homework and watching TikTok at the same time without the need to switch tabs! Just be sure to not tell your teachers                    

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

الاسم TikTok - Auto Scroller TikTok - Auto Scroller
ID fhacoogibhadlhlnkjkojidmphpjidbj
عنوان URL الرسمي https://chromewebstore.google.com/detail/tiktok-auto-scroller/fhacoogibhadlhlnkjkojidmphpjidbj
الوصف Extension that does the scrolling for you without the need to touch your mouse. Whenever a TikTok ends, the extension will…
حجم الملف 22.52 KB
عدد التثبيتات 86
النسخة الحالية 1.0.0
آخر تحديث 2023-06-29
تاريخ النشر 2023-06-29
تقييم 5.00/5 مجموع تقييمات 2
المطور browsnerose
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة سياسة الخصوصية https://sites.google.com/view/extensions-privacy
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "TikTok - Auto Scroller",
    "version": "1.0.0",
    "permissions": [
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "128": "icon.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.tiktok.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}