Fugu Meetings
A simple extension that allows you to schedule Fugu Conference Meetings.
Hvad er Fugu Meetings?
Fugu Meetings er en Chrome-udvidelse udviklet af Jungleworks, og dens hovedfunktion er "A simple extension that allows you to schedule Fugu Conference Meetings.".
Udvidelsesskærmbilleder
Download Fugu Meetings-udvidelses-CRX-fil
Download Fugu Meetings-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Fugu Meetings |
ID | iggbadilcbnfachpbaeodggclajnibcn |
Officiel URL | https://chromewebstore.google.com/detail/fugu-meetings/iggbadilcbnfachpbaeodggclajnibcn |
Beskrivelse | A simple extension that allows you to schedule Fugu Conference Meetings. |
Filstørrelse | 98.73 KB |
Antal Installationer | 15 |
Nuværende Version | 0.0.3 |
Senest Opdateret | 2020-05-06 |
Udgivelsesdato | 2020-05-06 |
Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
Udvikler | Jungleworks |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://fugu.chat |
Hjælpeside-URL | https://jungleworks.com/fugu |
URL til Fortrolighedspolitik Side | https://jungleworks.com/privacy-policy |
Understøttede Sprog | 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" } } |