TikTok - Auto Scroller

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

Vad är TikTok - Auto Scroller?

TikTok - Auto Scroller är en Chrome-tillägg utvecklad av browsnerose, och dess huvudfunktion är "Extension that does the scrolling for you without the need to touch your mouse. Whenever a TikTok ends, the extension will…".

Tilläggsskärmbilder

screenshot

Ladda ner TikTok - Auto Scroller-förlängningens CRX-fil

Ladda ner TikTok - Auto Scroller-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn TikTok - Auto Scroller TikTok - Auto Scroller
ID fhacoogibhadlhlnkjkojidmphpjidbj
Officiell webbadress https://chromewebstore.google.com/detail/tiktok-auto-scroller/fhacoogibhadlhlnkjkojidmphpjidbj
Beskrivning Extension that does the scrolling for you without the need to touch your mouse. Whenever a TikTok ends, the extension will…
Filstorlek 22.52 KB
Antal Installationer 86
Aktuell Version 1.0.0
Senast Uppdaterad 2023-06-29
Publiceringsdatum 2023-06-29
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare browsnerose
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://sites.google.com/view/extensions-privacy
Stödda Språk 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"
            ]
        }
    ]
}