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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้านโยบายความเป็นส่วนตัว 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"
            ]
        }
    ]
}