Volume Manager

Manage the volume of each tab

Hvad er Volume Manager?

Volume Manager er en Chrome-udvidelse udviklet af zhangbohun, og dens hovedfunktion er "Manage the volume of each tab".

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

                        Support Chrome browser Native and H5 two modes to control  volume
H5 mode, which can automatically remember the previous volume configuration, but only supports HTML5 standard audio and video
Browser Native mode, support for Flash and other multimedia , automatic configuration cannot be implemented due to the limitations of the Chrome browser (the configuration can be loaded after manually opening the extension page)                    

Grundlæggende oplysninger om udvidelsen

Navn Volume Manager Volume Manager
ID ogpbjlhpdjmcbkocjibemdmblffnfkmm
Officiel URL https://chromewebstore.google.com/detail/volume-manager/ogpbjlhpdjmcbkocjibemdmblffnfkmm
Beskrivelse Manage the volume of each tab
Filstørrelse 31.93 KB
Antal Installationer 10,654
Nuværende Version 0.1.9
Senest Opdateret 2022-11-15
Udgivelsesdato 2020-04-15
Bedømmelse 3.94/5 Samlet 17 Bedømmelser
Udvikler zhangbohun
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog en,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "icons": {
        "128": "img\/icon.png"
    },
    "version": "0.1.9",
    "offline_enabled": true,
    "permissions": [
        "activeTab",
        "tabs",
        "tabCapture"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "browser_action": {
        "default_title": "__MSG_name__",
        "default_icon": "img\/icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/volumeManager.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "manifest_version": 2,
    "default_locale": "en"
}