Switchvox Screen Sharing for Switchboard
Enables screen-sharing for chrome in the switchboard
Qu'est-ce que Switchvox Screen Sharing for Switchboard ?
Switchvox Screen Sharing for Switchboard est une extension Chrome développée par Digium, Inc., et sa fonction principale est "Enables screen-sharing for chrome in the switchboard".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Switchvox Screen Sharing for Switchboard
Téléchargez les fichiers d'extension Switchvox Screen Sharing for Switchboard 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
This extension is for Switchvox users, and makes it possible to share your desktop computer screen in the Switchboard.
Informations de Base sur l'Extension
Nom | Switchvox Screen Sharing for Switchboard |
ID | odnmjffmhmkbebhofkmeeejdbcofiejc |
URL Officiel | https://chromewebstore.google.com/detail/switchvox-screen-sharing/odnmjffmhmkbebhofkmeeejdbcofiejc |
Description | Enables screen-sharing for chrome in the switchboard |
Taille du Fichier | 4.03 KB |
Nombre d'Installations | 884 |
Version Actuelle | 0.0.2 |
Dernière Mise à Jour | 2018-10-24 |
Date de Publication | 2018-10-24 |
Évaluation | 1.00/5 Total 1 Évaluations |
Développeur | Digium, Inc. |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Switchvox Screen Sharing for Switchboard", "description": "Enables screen-sharing for chrome in the switchboard", "version": "0.0.2", "content_security_policy": "script-src 'self'; object-src 'self'", "permissions": [ "desktopCapture", "https:\/\/*\/*", "http:\/\/*\/*" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content.js" ] } ] } |