TikTok - Auto Scroller

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

Qu'est-ce que TikTok - Auto Scroller ?

TikTok - Auto Scroller est une extension Chrome développée par browsnerose, et sa fonction principale est "Extension that does the scrolling for you without the need to touch your mouse. Whenever a TikTok ends, the extension will…".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension TikTok - Auto Scroller

Téléchargez les fichiers d'extension TikTok - Auto Scroller au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom TikTok - Auto Scroller TikTok - Auto Scroller
ID fhacoogibhadlhlnkjkojidmphpjidbj
URL Officiel https://chromewebstore.google.com/detail/tiktok-auto-scroller/fhacoogibhadlhlnkjkojidmphpjidbj
Description Extension that does the scrolling for you without the need to touch your mouse. Whenever a TikTok ends, the extension will…
Taille du Fichier 22.52 KB
Nombre d'Installations 86
Version Actuelle 1.0.0
Dernière Mise à Jour 2023-06-29
Date de Publication 2023-06-29
Évaluation 5.00/5 Total 2 Évaluations
Développeur browsnerose
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://sites.google.com/view/extensions-privacy
Langues Prises en Charge 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"
            ]
        }
    ]
}