Volume Manager
Manage the volume of each tab
What is Volume Manager?
Volume Manager is a Chrome extension developed by zhangbohun, and its main feature is "Manage the volume of each tab".
Extension Screenshots
Download Volume Manager Extension CRX File
Download Volume Manager extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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)
Extension Basic Information
Name | Volume Manager |
ID | ogpbjlhpdjmcbkocjibemdmblffnfkmm |
Official URL | https://chromewebstore.google.com/detail/volume-manager/ogpbjlhpdjmcbkocjibemdmblffnfkmm |
Description | Manage the volume of each tab |
File Size | 31.93 KB |
Installation Count | 10,654 |
Current Version | 0.1.9 |
Last Updated | 2022-11-15 |
Publish Date | 2020-04-15 |
Rating | 3.94/5 Total 17 Ratings |
Developer | zhangbohun |
mail@zhangbohun.com | |
Payment Type | free |
Supported Languages | 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" } |