Fugu Meetings
A simple extension that allows you to schedule Fugu Conference Meetings.
什么是Fugu Meetings?
Fugu Meetings是由Jungleworks开发的Chrome扩展程序,该扩展的主要功能是“A simple extension that allows you to schedule Fugu Conference Meetings.”。
扩展截图
下载Fugu Meetings扩展crx文件
下载Fugu Meetings扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
You can easily schedule your meetings on Google Calendar and Outlook Calendar with this Fugu Meetings extension. You are just one button away from generating your conversation link in your meeting.
扩展基本信息
名称 | Fugu Meetings |
ID | iggbadilcbnfachpbaeodggclajnibcn |
官方URL | https://chromewebstore.google.com/detail/fugu-meetings/iggbadilcbnfachpbaeodggclajnibcn |
简介 | A simple extension that allows you to schedule Fugu Conference Meetings. |
文件大小 | 98.73 KB |
安装次数 | 15 |
当前版本 | 0.0.3 |
更新时间 | 2020-05-06 |
上架时间 | 2020-05-06 |
评分 | 5.00/5 共2次评分 |
开发者 | Jungleworks |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://fugu.chat |
帮助页面URL | https://jungleworks.com/fugu |
隐私政策页面URL | https://jungleworks.com/privacy-policy |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Fugu Meetings", "description": "A simple extension that allows you to schedule Fugu Conference Meetings.", "version": "0.0.3", "minimum_chrome_version": "34", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [] }, "permissions": [], "externally_connectable": { "matches": [ "*:\/\/conferencing.fugu.chat\/*", "*:\/\/meet.fugu.chat\/*" ] }, "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": [ "icon16.png", "icon48.png" ], "browser_action": { "default_title": "Create Fugu Meetings", "default_popup": "popup.html" } } |