Fugu Meetings
A simple extension that allows you to schedule Fugu Conference Meetings.
What is Fugu Meetings?
Fugu Meetings is a Chrome extension developed by Jungleworks, and its main feature is "A simple extension that allows you to schedule Fugu Conference Meetings.".
Extension Screenshots
Download Fugu Meetings Extension CRX File
Download Fugu Meetings extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Fugu Meetings |
ID | iggbadilcbnfachpbaeodggclajnibcn |
Official URL | https://chromewebstore.google.com/detail/fugu-meetings/iggbadilcbnfachpbaeodggclajnibcn |
Description | A simple extension that allows you to schedule Fugu Conference Meetings. |
File Size | 98.73 KB |
Installation Count | 15 |
Current Version | 0.0.3 |
Last Updated | 2020-05-06 |
Publish Date | 2020-05-06 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Jungleworks |
[email protected] | |
Payment Type | free |
Extension Website | https://fugu.chat |
Help Page URL | https://jungleworks.com/fugu |
Privacy Policy Page URL | https://jungleworks.com/privacy-policy |
Supported Languages | 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" } } |