Volume Manager

Manage the volume of each tab

Volume Manager क्या है?

Volume Manager zhangbohun द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Manage the volume of each tab"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Volume Manager एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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)                    

एक्सटेंशन की मूल जानकारी

नाम Volume Manager Volume Manager
ID ogpbjlhpdjmcbkocjibemdmblffnfkmm
आधिकारिक URL https://chromewebstore.google.com/detail/volume-manager/ogpbjlhpdjmcbkocjibemdmblffnfkmm
विवरण Manage the volume of each tab
फ़ाइल का आकार 31.93 KB
स्थापना संख्या 10,654
वर्तमान संस्करण 0.1.9
अंतिम अपडेट 2022-11-15
प्रकाशन तिथि 2020-04-15
रेटिंग 3.94/5 कुल 17 रेटिंग्स
डेवलपर zhangbohun
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
}