Volume Manager
Manage the volume of each tab
Apa itu Volume Manager?
Volume Manager adalah ekstensi Chrome yang dikembangkan oleh zhangbohun, dan fitur utamanya adalah "Manage the volume of each tab".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Volume Manager
Unduh file ekstensi Volume Manager dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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)
Informasi Dasar Ekstensi
Nama | Volume Manager |
ID | ogpbjlhpdjmcbkocjibemdmblffnfkmm |
URL Resmi | https://chromewebstore.google.com/detail/volume-manager/ogpbjlhpdjmcbkocjibemdmblffnfkmm |
Deskripsi | Manage the volume of each tab |
Ukuran File | 31.93 KB |
Jumlah Instalasi | 10,654 |
Versi Saat Ini | 0.1.9 |
Terakhir Diperbarui | 2022-11-15 |
Tanggal Publikasi | 2020-04-15 |
Penilaian | 3.94/5 Total 17 Penilaian |
Pengembang | zhangbohun |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" } |