Volume Manager
Manage the volume of each tab
Volume Managerคืออะไร?
Volume Manager เป็นส่วนขยายของ Chrome ที่พัฒนาโดย zhangbohun และคุณลักษณะหลักของมันคือ "Manage the volume of each tab"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Volume Manager
ดาวน์โหลดไฟล์ส่วนขยาย Volume Manager ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Support Chrome browser Native and H5 two modes to control volume H5 mode, which can automatically remember the previous volume configuration, but only supports HTML5 standard audio and video Browser Native mode, support for Flash and other multimedia , automatic configuration cannot be implemented due to the limitations of the Chrome browser (the configuration can be loaded after manually opening the extension page)
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Volume Manager |
ID | ogpbjlhpdjmcbkocjibemdmblffnfkmm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/volume-manager/ogpbjlhpdjmcbkocjibemdmblffnfkmm |
คำอธิบาย | Manage the volume of each tab |
ขนาดไฟล์ | 31.93 KB |
จำนวนการติดตั้ง | 10,654 |
เวอร์ชันปัจจุบัน | 0.1.9 |
อัปเดตครั้งล่าสุด | 2022-11-15 |
วันที่เผยแพร่ | 2020-04-15 |
คะแนน | 3.94/5 รวมทั้งหมด 17 คะแนน |
ผู้พัฒนา | zhangbohun |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en,zh-CN,zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_name__", "description": "__MSG_description__", "icons": { "128": "img\/icon.png" }, "version": "0.1.9", "offline_enabled": true, "permissions": [ "activeTab", "tabs", "tabCapture" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "browser_action": { "default_title": "__MSG_name__", "default_icon": "img\/icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "all_frames": true, "run_at": "document_end", "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/volumeManager.js" ] } ], "background": { "scripts": [ "js\/background.js" ] }, "manifest_version": 2, "default_locale": "en" } |