TikTok - Auto Scroller
Extension that does the scrolling for you without the need to touch your mouse. Whenever a TikTok ends, the extension will…
Was ist TikTok - Auto Scroller?
TikTok - Auto Scroller ist eine Chrome-Erweiterung, die von browsnerose entwickelt wurde, und ihr Hauptmerkmal ist "Extension that does the scrolling for you without the need to touch your mouse. Whenever a TikTok ends, the extension will…".
Erweiterungsscreenshots
TikTok - Auto Scroller-Erweiterungs-CRX-Datei herunterladen
Laden Sie TikTok - Auto Scroller-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | TikTok - Auto Scroller |
ID | fhacoogibhadlhlnkjkojidmphpjidbj |
Offizielle URL | https://chromewebstore.google.com/detail/tiktok-auto-scroller/fhacoogibhadlhlnkjkojidmphpjidbj |
Beschreibung | Extension that does the scrolling for you without the need to touch your mouse. Whenever a TikTok ends, the extension will… |
Dateigröße | 22.52 KB |
Installationsanzahl | 86 |
Aktuelle Version | 1.0.0 |
Letztes Update | 2023-06-29 |
Veröffentlichungsdatum | 2023-06-29 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | browsnerose |
[email protected] | |
Zahlungsart | free |
URL der Datenschutzrichtlinien-Seite | https://sites.google.com/view/extensions-privacy |
Unterstützte Sprachen | 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" ] } ] } |