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是由browsnerose開發的Chrome擴展程式,該擴展的主要功能是“Extension that does the scrolling for you without the need to touch your mouse. Whenever a TikTok ends, the extension will…”。

擴展截圖

screenshot

下載TikTok - Auto Scroller擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}