Volume Manager

Manage the volume of each tab

Volume Managerとは何ですか?

Volume Managerはzhangbohunによって開発されたChromeの拡張機能で、その主な機能は「Manage the volume of each tab」です。

拡張機能のスクリーンショット

screenshot

Volume Manager拡張機能のCRXファイルをダウンロード

Volume Manager拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
}