Volume Manager

Control any tab's volume separately

Volume Managerคืออะไร?

Volume Manager เป็นส่วนขยายของ Chrome ที่พัฒนาโดย coherence และคุณลักษณะหลักของมันคือ "Control any tab's volume separately"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Volume Manager

ดาวน์โหลดไฟล์ส่วนขยาย Volume Manager ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        An open-source plugin to control any tab's volume separately.

Do note that once you started modifying volume:
- You cannot toggle fullscreen of this tab. This is due to the Chrome API limitation.
- Your system may not go into sleep/suspend/monitor off because Chrome will mark the current tab is "capturing" and inhibit doing so.

Source code: https://github.com/cjc7373/chrome-volume-manager                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Volume Manager Volume Manager
ID imhcgcnjkibjikdbdgnhclihigkooeaf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/volume-manager/imhcgcnjkibjikdbdgnhclihigkooeaf
คำอธิบาย Control any tab's volume separately
ขนาดไฟล์ 171 KB
จำนวนการติดตั้ง 617
เวอร์ชันปัจจุบัน 2.0.0
อัปเดตครั้งล่าสุด 2023-11-18
วันที่เผยแพร่ 2021-03-05
คะแนน 4.83/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา coherence
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/cjc7373/chrome-volume-manager
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Volume Manager",
    "version": "2.0.0",
    "description": "Control any tab's volume separately",
    "permissions": [
        "activeTab",
        "tabCapture",
        "offscreen"
    ],
    "action": {
        "default_icon": "icon.e84ebc53.png",
        "default_popup": "popup.c91b8cbb.html"
    },
    "background": {
        "service_worker": "background.538a6b63.js"
    },
    "icons": {
        "512": "icon.e84ebc53.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "offscreen.html"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ]
}