Volume Manager
Control any tab's volume separately
Wat is Volume Manager?
Volume Manager is een Chrome-extensie ontwikkeld door coherence, en de belangrijkste functie is "Control any tab's volume separately".
Extensie Screenshots
Download het CRX-bestand van de extensie Volume Manager
Download Volume Manager-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Volume Manager |
ID | imhcgcnjkibjikdbdgnhclihigkooeaf |
Officiële URL | https://chromewebstore.google.com/detail/volume-manager/imhcgcnjkibjikdbdgnhclihigkooeaf |
Beschrijving | Control any tab's volume separately |
Bestandsgrootte | 171 KB |
Aantal Installaties | 617 |
Huidige Versie | 2.0.0 |
Laatst Bijgewerkt | 2023-11-18 |
Publicatiedatum | 2021-03-05 |
Beoordeling | 4.83/5 Totaal 6 Beoordelingen |
Ontwikkelaar | coherence |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/cjc7373/chrome-volume-manager |
Ondersteunde Talen | 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:\/\/*\/*" ] } ] } |