Tiktok Audio Control
Control the audio of the video player on tiktoks web client
Apa itu Tiktok Audio Control?
Tiktok Audio Control adalah ekstensi Chrome yang dikembangkan oleh Meeoh, dan fitur utamanya adalah "Control the audio of the video player on tiktoks web client".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Tiktok Audio Control
Unduh file ekstensi Tiktok Audio Control dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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!
Informasi Dasar Ekstensi
Nama | |
ID | gkkbemmahdfblbnggbdbfhhdbmajpcab |
URL Resmi | https://chrome.google.com/webstore/detail/tiktok-audio-control/gkkbemmahdfblbnggbdbfhhdbmajpcab |
Deskripsi | Control the audio of the video player on tiktoks web client |
Ukuran File | 39.65 KB |
Jumlah Instalasi | 4,000 |
Versi Saat Ini | 0.1.0 |
Terakhir Diperbarui | 2021-08-25 |
Tanggal Publikasi | 2020-06-24 |
Penilaian | 3.58/5 Total 31 Penilaian |
Pengembang | Meeoh |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" } ] } |