HipChat Meetings
A simple extension that allows you to schedule HipChat Meetings and stream your desktop into HipChat.
¿Qué es HipChat Meetings?
HipChat Meetings es una extensión de Chrome desarrollada por https://hipchat.me, y su función principal es "A simple extension that allows you to schedule HipChat Meetings and stream your desktop into HipChat.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión HipChat Meetings
Descarga archivos de extensión HipChat Meetings en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Información Básica de la Extensión
Nombre | HipChat Meetings |
ID | kdlonpjcbkjndbpboifcdcgeeciffoep |
URL Oficial | https://chromewebstore.google.com/detail/hipchat-meetings/kdlonpjcbkjndbpboifcdcgeeciffoep |
Descripción | A simple extension that allows you to schedule HipChat Meetings and stream your desktop into HipChat. |
Tamaño del Archivo | 98.93 KB |
Cantidad de Instalaciones | 2,347 |
Versión Actual | 0.2.6.2 |
Última Actualización | 2017-01-24 |
Fecha de Publicación | 2017-01-24 |
Calificación | 4.69/5 Total de 16 Calificaciones |
Desarrollador | https://hipchat.me |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } |