Fugu Meetings
A simple extension that allows you to schedule Fugu Conference Meetings.
Fugu Meetings क्या है?
Fugu Meetings Jungleworks द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple extension that allows you to schedule Fugu Conference Meetings."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Fugu Meetings एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } |