Volume Manager
Manage the volume of each tab
什麼是Volume Manager?
Volume Manager是由zhangbohun開發的Chrome擴展程式,該擴展的主要功能是“Manage the volume of each tab”。
擴展截圖
下載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 |
ID | ogpbjlhpdjmcbkocjibemdmblffnfkmm |
官方網址 | 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" } |