Volume Manager
Manage the volume of each tab
Volume Manager là gì?
Volume Manager là một tiện ích mở rộng Chrome được phát triển bởi zhangbohun, và tính năng chính của nó là "Manage the volume of each tab".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Volume Manager
Tải xuống các tệp mở rộng Volume Manager dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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)
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Volume Manager |
ID | ogpbjlhpdjmcbkocjibemdmblffnfkmm |
URL Chính Thức | https://chromewebstore.google.com/detail/volume-manager/ogpbjlhpdjmcbkocjibemdmblffnfkmm |
Mô tả | Manage the volume of each tab |
Kích Thước Tệp | 31.93 KB |
Số Lần Cài Đặt | 10,654 |
Phiên Bản Hiện Tại | 0.1.9 |
Cập Nhật Lần Cuối | 2022-11-15 |
Ngày Phát Hành | 2020-04-15 |
Đánh Giá | 3.94/5 Tổng số 17 Đánh Giá |
Nhà Phát Triển | zhangbohun |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } |