Volume Manager

Control any tab's volume separately

Cos'è Volume Manager?

Volume Manager è un'estensione di Chrome sviluppata da coherence, e la sua funzione principale è "Control any tab's volume separately".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Volume Manager

Scarica i file di estensione Volume Manager in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Volume Manager Volume Manager
ID imhcgcnjkibjikdbdgnhclihigkooeaf
URL Ufficiale https://chromewebstore.google.com/detail/volume-manager/imhcgcnjkibjikdbdgnhclihigkooeaf
Descrizione Control any tab's volume separately
Dimensione del File 171 KB
Conteggio Installazioni 617
Versione Corrente 2.0.0
Ultimo Aggiornamento 2023-11-18
Data di Pubblicazione 2021-03-05
Valutazione 4.83/5 Totale 6 Valutazioni
Sviluppatore coherence
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/cjc7373/chrome-volume-manager
Lingue Supportate 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:\/\/*\/*"
            ]
        }
    ]
}