Tiktok Audio Control
Control the audio of the video player on tiktoks web client
Was ist Tiktok Audio Control?
Tiktok Audio Control ist eine Chrome-Erweiterung, die von Meeoh entwickelt wurde, und ihr Hauptmerkmal ist "Control the audio of the video player on tiktoks web client".
Erweiterungsscreenshots
Tiktok Audio Control-Erweiterungs-CRX-Datei herunterladen
Laden Sie Tiktok Audio Control-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
Adds a plus and minus volume button and automatically sets the default tiktok volume on chrome to 10%. Increments are 5% but are customizable from the options page!
Grundlegende Informationen zur Erweiterung
Name | |
ID | gkkbemmahdfblbnggbdbfhhdbmajpcab |
Offizielle URL | https://chrome.google.com/webstore/detail/tiktok-audio-control/gkkbemmahdfblbnggbdbfhhdbmajpcab |
Beschreibung | Control the audio of the video player on tiktoks web client |
Dateigröße | 39.65 KB |
Installationsanzahl | 4,000 |
Aktuelle Version | 0.1.0 |
Letztes Update | 2021-08-25 |
Veröffentlichungsdatum | 2020-06-24 |
Bewertung | 3.58/5 Insgesamt 31 Bewertungen |
Entwickler | Meeoh |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tiktok Audio Control", "options_ui": { "page": "src\/options.html", "open_in_tab": false }, "version": "0.1.0", "manifest_version": 2, "description": "Control the audio of the video player on tiktoks web client", "icons": { "16": "icons\/icon.png", "48": "icons\/icon.png", "128": "icons\/icon.png" }, "background": { "scripts": [ "src\/background.js" ] }, "permissions": [ "https:\/\/www.tiktok.com\/*", "storage", "tabs" ], "content_scripts": [ { "matches": [ "https:\/\/www.tiktok.com\/*" ], "js": [ "src\/index.js" ], "run_at": "document_end" } ] } |