HipChat Meetings
A simple extension that allows you to schedule HipChat Meetings and stream your desktop into HipChat.
什么是HipChat Meetings?
HipChat Meetings是由https://hipchat.me开发的Chrome扩展程序,该扩展的主要功能是“A simple extension that allows you to schedule HipChat Meetings and stream your desktop into HipChat.”。
扩展截图
下载HipChat Meetings扩展crx文件
下载HipChat Meetings扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                                             扩展基本信息
| 名称 |   |  
| ID | kdlonpjcbkjndbpboifcdcgeeciffoep | 
| 官方URL | https://chromewebstore.google.com/detail/hipchat-meetings/kdlonpjcbkjndbpboifcdcgeeciffoep | 
| 简介 | A simple extension that allows you to schedule HipChat Meetings and stream your desktop into HipChat. | 
| 文件大小 | 98.93 KB | 
| 安装次数 | 2,347 | 
| 当前版本 | 0.2.6.2 | 
| 更新时间 | 2017-01-24 | 
| 上架时间 | 2017-01-24 | 
| 评分 | 4.69/5 共16次评分 | 
| 开发者 | https://hipchat.me | 
| 电子邮箱 | [email protected] | 
| 付费类型 | free | 
| 支持的语言 | 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"
    ]
}  |  |