Volume Mixer

A chrome extension to control volume per tab

Apa itu Volume Mixer?

Volume Mixer adalah ekstensi Chrome yang dikembangkan oleh Gagan Bindoria, dan fitur utamanya adalah "A chrome extension to control volume per tab".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Volume Mixer

Unduh file ekstensi Volume Mixer 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

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

Informasi Dasar Ekstensi

Nama Volume Mixer Volume Mixer
ID ghpkofodokpkakhbdbbeofmnomfikgon
URL Resmi https://chromewebstore.google.com/detail/volume-mixer/ghpkofodokpkakhbdbbeofmnomfikgon
Deskripsi A chrome extension to control volume per tab
Ukuran File 721 KB
Jumlah Instalasi 2,849
Versi Saat Ini 1.0.3
Terakhir Diperbarui 2024-01-19
Tanggal Publikasi 2021-05-16
Penilaian 3.00/5 Total 10 Penilaian
Pengembang Gagan Bindoria
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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": [
                ""
            ]
        }
    ]
}