Tiktok Audio Control
Control the audio of the video player on tiktoks web client
Tiktok Audio Controlคืออะไร?
Tiktok Audio Control เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Meeoh และคุณลักษณะหลักของมันคือ "Control the audio of the video player on tiktoks web client"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tiktok Audio Control
ดาวน์โหลดไฟล์ส่วนขยาย Tiktok Audio Control ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | gkkbemmahdfblbnggbdbfhhdbmajpcab |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/tiktok-audio-control/gkkbemmahdfblbnggbdbfhhdbmajpcab |
คำอธิบาย | Control the audio of the video player on tiktoks web client |
ขนาดไฟล์ | 39.65 KB |
จำนวนการติดตั้ง | 4,000 |
เวอร์ชันปัจจุบัน | 0.1.0 |
อัปเดตครั้งล่าสุด | 2021-08-25 |
วันที่เผยแพร่ | 2020-06-24 |
คะแนน | 3.58/5 รวมทั้งหมด 31 คะแนน |
ผู้พัฒนา | Meeoh |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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" } ] } |