Volume Manager
Control any tab's volume separately
Apa itu Volume Manager?
Volume Manager adalah ekstensi Chrome yang dikembangkan oleh coherence, dan fitur utamanya adalah "Control any tab's volume separately".
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
An open-source plugin to control any tab's volume separately. Do note that once you started modifying volume: - You cannot toggle fullscreen of this tab. This is due to the Chrome API limitation. - Your system may not go into sleep/suspend/monitor off because Chrome will mark the current tab is "capturing" and inhibit doing so. Source code: https://github.com/cjc7373/chrome-volume-manager
Informasi Dasar Ekstensi
Nama | Volume Manager |
ID | imhcgcnjkibjikdbdgnhclihigkooeaf |
URL Resmi | https://chromewebstore.google.com/detail/volume-manager/imhcgcnjkibjikdbdgnhclihigkooeaf |
Deskripsi | Control any tab's volume separately |
Ukuran File | 171 KB |
Jumlah Instalasi | 617 |
Versi Saat Ini | 2.0.0 |
Terakhir Diperbarui | 2023-11-18 |
Tanggal Publikasi | 2021-03-05 |
Penilaian | 4.83/5 Total 6 Penilaian |
Pengembang | coherence |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/cjc7373/chrome-volume-manager |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Volume Manager", "version": "2.0.0", "description": "Control any tab's volume separately", "permissions": [ "activeTab", "tabCapture", "offscreen" ], "action": { "default_icon": "icon.e84ebc53.png", "default_popup": "popup.c91b8cbb.html" }, "background": { "service_worker": "background.538a6b63.js" }, "icons": { "512": "icon.e84ebc53.png" }, "web_accessible_resources": [ { "resources": [ "offscreen.html" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] } ] } |