Volume Manager

Control any tab's volume separately

Hvad er Volume Manager?

Volume Manager er en Chrome-udvidelse udviklet af coherence, og dens hovedfunktion er "Control any tab's volume separately".

Udvidelsesskærmbilleder

screenshot

Download Volume Manager-udvidelses-CRX-fil

Download Volume Manager-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Volume Manager Volume Manager
ID imhcgcnjkibjikdbdgnhclihigkooeaf
Officiel URL https://chromewebstore.google.com/detail/volume-manager/imhcgcnjkibjikdbdgnhclihigkooeaf
Beskrivelse Control any tab's volume separately
Filstørrelse 171 KB
Antal Installationer 617
Nuværende Version 2.0.0
Senest Opdateret 2023-11-18
Udgivelsesdato 2021-03-05
Bedømmelse 4.83/5 Samlet 6 Bedømmelser
Udvikler coherence
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/cjc7373/chrome-volume-manager
Understøttede Sprog 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:\/\/*\/*"
            ]
        }
    ]
}