Volume Mixer

A chrome extension to control volume per tab

Wat is Volume Mixer?

Volume Mixer is een Chrome-extensie ontwikkeld door Gagan Bindoria, en de belangrijkste functie is "A chrome extension to control volume per tab".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Volume Mixer

Download Volume Mixer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Volume Mixer Volume Mixer
ID ghpkofodokpkakhbdbbeofmnomfikgon
Officiële URL https://chromewebstore.google.com/detail/volume-mixer/ghpkofodokpkakhbdbbeofmnomfikgon
Beschrijving A chrome extension to control volume per tab
Bestandsgrootte 721 KB
Aantal Installaties 2,849
Huidige Versie 1.0.3
Laatst Bijgewerkt 2024-01-19
Publicatiedatum 2021-05-16
Beoordeling 3.00/5 Totaal 10 Beoordelingen
Ontwikkelaar Gagan Bindoria
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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": [
                ""
            ]
        }
    ]
}