VOXO Meet
A simple extension that allows you to screen share and schedule meetings
什么是VOXO Meet?
VOXO Meet是由https://voxo.co开发的Chrome扩展程序,该扩展的主要功能是“A simple extension that allows you to screen share and schedule meetings”。
扩展截图
下载VOXO Meet扩展crx文件
下载VOXO Meet扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
名称 | VOXO Meet |
ID | enbobpnfcaohmdnjcpdjphkemkaemlil |
官方URL | https://chromewebstore.google.com/detail/voxo-meet/enbobpnfcaohmdnjcpdjphkemkaemlil |
简介 | A simple extension that allows you to screen share and schedule meetings |
文件大小 | 134 KB |
安装次数 | 42 |
当前版本 | 0.1.13 |
更新时间 | 2018-10-14 |
上架时间 | 2018-10-13 |
开发者 | https://voxo.co |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.voxo.co |
帮助页面URL | http://support.voxo.co |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "VOXO Meet", "description": "A simple extension that allows you to screen share and schedule meetings", "version": "0.1.13", "minimum_chrome_version": "34", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "desktopCapture", "https:\/\/calendar.google.com\/*" ], "externally_connectable": { "matches": [ "*:\/\/meet.voxo.co\/*", "*:\/\/voxo.co\/*" ] }, "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": false, "run_at": "document_end" } ], "web_accessible_resources": [ "icon48.png", "meet-logo-white-48x48.png", "meet-logo-blue.svg", "meet-logo-grey.svg" ], "browser_action": { "default_title": "Create VOXO Meetings", "default_popup": "popup.html" } } |