Volume Manager
Control any tab's volume separately
Vad är Volume Manager?
Volume Manager är en Chrome-tillägg utvecklad av coherence, och dess huvudfunktion är "Control any tab's volume separately".
Tilläggsskärmbilder
Ladda ner Volume Manager-förlängningens CRX-fil
Ladda ner Volume Manager-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Volume Manager |
ID | imhcgcnjkibjikdbdgnhclihigkooeaf |
Officiell webbadress | https://chromewebstore.google.com/detail/volume-manager/imhcgcnjkibjikdbdgnhclihigkooeaf |
Beskrivning | Control any tab's volume separately |
Filstorlek | 171 KB |
Antal Installationer | 617 |
Aktuell Version | 2.0.0 |
Senast Uppdaterad | 2023-11-18 |
Publiceringsdatum | 2021-03-05 |
Betyg | 4.83/5 Totalt 6 Betyg |
Utvecklare | coherence |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/cjc7373/chrome-volume-manager |
Stödda Språk | 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:\/\/*\/*" ] } ] } |