Tiktok Audio Control
Control the audio of the video player on tiktoks web client
Cos'è Tiktok Audio Control?
Tiktok Audio Control è un'estensione di Chrome sviluppata da Meeoh, e la sua funzione principale è "Control the audio of the video player on tiktoks web client".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Tiktok Audio Control
Scarica i file di estensione Tiktok Audio Control in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | |
ID | gkkbemmahdfblbnggbdbfhhdbmajpcab |
URL Ufficiale | https://chrome.google.com/webstore/detail/tiktok-audio-control/gkkbemmahdfblbnggbdbfhhdbmajpcab |
Descrizione | Control the audio of the video player on tiktoks web client |
Dimensione del File | 39.65 KB |
Conteggio Installazioni | 4,000 |
Versione Corrente | 0.1.0 |
Ultimo Aggiornamento | 2021-08-25 |
Data di Pubblicazione | 2020-06-24 |
Valutazione | 3.58/5 Totale 31 Valutazioni |
Sviluppatore | Meeoh |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } ] } |