HipChat Meetings
A simple extension that allows you to schedule HipChat Meetings and stream your desktop into HipChat.
Qu'est-ce que HipChat Meetings ?
HipChat Meetings est une extension Chrome développée par https://hipchat.me, et sa fonction principale est "A simple extension that allows you to schedule HipChat Meetings and stream your desktop into HipChat.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension HipChat Meetings
Téléchargez les fichiers d'extension HipChat Meetings 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
Informations de Base sur l'Extension
Nom | HipChat Meetings |
ID | kdlonpjcbkjndbpboifcdcgeeciffoep |
URL Officiel | https://chromewebstore.google.com/detail/hipchat-meetings/kdlonpjcbkjndbpboifcdcgeeciffoep |
Description | A simple extension that allows you to schedule HipChat Meetings and stream your desktop into HipChat. |
Taille du Fichier | 98.93 KB |
Nombre d'Installations | 2,347 |
Version Actuelle | 0.2.6.2 |
Dernière Mise à Jour | 2017-01-24 |
Date de Publication | 2017-01-24 |
Évaluation | 4.69/5 Total 16 Évaluations |
Développeur | https://hipchat.me |
[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": "HipChat Meetings", "description": "A simple extension that allows you to schedule HipChat Meetings and stream your desktop into HipChat.", "version": "0.2.6.2", "minimum_chrome_version": "34", "icons": { "128": "hipchat-logo-128x128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "desktopCapture", "https:\/\/calendar.google.com\/*" ], "externally_connectable": { "matches": [ "*:\/\/*.hipchat.me\/*", "*:\/\/*.atlassian.io\/*", "*:\/\/pawel.jitsi.net\/*", "*:\/\/hristo.jitsi.net\/*", "*:\/\/localhost:*\/*" ] }, "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/calendar\/*", "https:\/\/outlook.live.com\/owa\/*" ], "js": [ "jquery.js", "RandomUtil.js", "RoomnameGenerator.js", "meet-calendar.js" ], "css": [ "\/css\/all.css" ], "all_frames": true, "run_at": "document_end" } ], "web_accessible_resources": [ "hipchat-logo-128x128.png", "hipchat-logo-white-48x48.png" ] } |