Volume Manager
Control any tab's volume separately
Qu'est-ce que Volume Manager ?
Volume Manager est une extension Chrome développée par coherence, et sa fonction principale est "Control any tab's volume separately".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Volume Manager
Téléchargez les fichiers d'extension Volume Manager au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Volume Manager |
ID | imhcgcnjkibjikdbdgnhclihigkooeaf |
URL Officiel | https://chromewebstore.google.com/detail/volume-manager/imhcgcnjkibjikdbdgnhclihigkooeaf |
Description | Control any tab's volume separately |
Taille du Fichier | 171 KB |
Nombre d'Installations | 617 |
Version Actuelle | 2.0.0 |
Dernière Mise à Jour | 2023-11-18 |
Date de Publication | 2021-03-05 |
Évaluation | 4.83/5 Total 6 Évaluations |
Développeur | coherence |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/cjc7373/chrome-volume-manager |
Langues Prises en Charge | 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:\/\/*\/*" ] } ] } |