Volume Mixer

A chrome extension to control volume per tab

Volume Mixerคืออะไร?

Volume Mixer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Gagan Bindoria และคุณลักษณะหลักของมันคือ "A chrome extension to control volume per tab"

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

screenshot

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

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

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

                        A simple tool to control volume of each tab with a audio element with easy to use UI.                    

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

ชื่อ Volume Mixer Volume Mixer
ID ghpkofodokpkakhbdbbeofmnomfikgon
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/volume-mixer/ghpkofodokpkakhbdbbeofmnomfikgon
คำอธิบาย A chrome extension to control volume per tab
ขนาดไฟล์ 721 KB
จำนวนการติดตั้ง 2,849
เวอร์ชันปัจจุบัน 1.0.3
อัปเดตครั้งล่าสุด 2024-01-19
วันที่เผยแพร่ 2021-05-16
คะแนน 3.00/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา Gagan Bindoria
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A chrome extension to control volume per tab",
    "version": "1.0.3",
    "manifest_version": 3,
    "name": "Volume Mixer",
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "host_permissions": [
        ""
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "html2canvas.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png",
                "html2canvas.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}