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 |
Eメール | [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" } } |