JungleWP Meet
A simple extension that allows you to schedule JungleWP Meet meetings and stream your desktop into JungleWP Meet conferences.
什麼是JungleWP Meet?
JungleWP Meet是由https://junglewp.com開發的Chrome擴展程式,該擴展的主要功能是“A simple extension that allows you to schedule JungleWP Meet meetings and stream your desktop into JungleWP Meet conferences.”。
擴展截圖
下載JungleWP Meet擴展crx文件
下載JungleWP Meet擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A Chrome extension for calendar integration (Google Calendar and Office 365) and Screen Sharing in JungleWP Meet. 擴展基本資訊
| 名稱 | |
| ID | dgdknjdodnepkmgphlpadifnlpjcehha |
| 官方網址 | https://chromewebstore.google.com/detail/junglewp-meet/dgdknjdodnepkmgphlpadifnlpjcehha |
| 簡介 | A simple extension that allows you to schedule JungleWP Meet meetings and stream your desktop into JungleWP Meet conferences. |
| 檔案大小 | 135 KB |
| 安裝次數 | 18 |
| 目前版本 | 0.2.8 |
| 更新時間 | 2020-05-03 |
| 上架時間 | 2020-05-03 |
| 開發者 | https://junglewp.com |
| 付費類型 | free |
| 擴展官網 | https://junglewp.com/meet/ |
| 說明頁面URL | https://junglewp.com/contact/ |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "JungleWP Meet",
"description": "A simple extension that allows you to schedule JungleWP Meet meetings and stream your desktop into JungleWP Meet conferences.",
"version": "0.2.8",
"minimum_chrome_version": "34",
"icons": {
"16": "junglewp-icon-16x16.png",
"48": "junglewp-icon-48x48.png",
"128": "junglewp-icon-128x128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"permissions": [
"desktopCapture",
"https:\/\/calendar.google.com\/*"
],
"externally_connectable": {
"matches": [
"*:\/\/meet.junglewp.com\/*"
]
},
"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": [
"junglewp-icon-48x48.png",
"junglewp-icon-48x48.png",
"junglewp-logo.svg",
"junglewp-logo.svg"
],
"browser_action": {
"default_title": "Create a JungleWP Meet meeting",
"default_popup": "popup.html"
}
} | |