Volume Manager

Manage the volume of each tab

Was ist Volume Manager?

Volume Manager ist eine Chrome-Erweiterung, die von zhangbohun entwickelt wurde, und ihr Hauptmerkmal ist "Manage the volume of each tab".

Erweiterungsscreenshots

screenshot

Volume Manager-Erweiterungs-CRX-Datei herunterladen

Laden Sie Volume Manager-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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)                    

Grundlegende Informationen zur Erweiterung

Name Volume Manager Volume Manager
ID ogpbjlhpdjmcbkocjibemdmblffnfkmm
Offizielle URL https://chromewebstore.google.com/detail/volume-manager/ogpbjlhpdjmcbkocjibemdmblffnfkmm
Beschreibung Manage the volume of each tab
Dateigröße 31.93 KB
Installationsanzahl 10,654
Aktuelle Version 0.1.9
Letztes Update 2022-11-15
Veröffentlichungsdatum 2020-04-15
Bewertung 3.94/5 Insgesamt 17 Bewertungen
Entwickler zhangbohun
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
}