Fugu Meetings
A simple extension that allows you to schedule Fugu Conference Meetings.
ما هو Fugu Meetings؟
Fugu Meetings هو إضافة Chrome تم تطويرها بواسطة Jungleworks، والميزة الرئيسية لها هي "A simple extension that allows you to schedule Fugu Conference Meetings.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Fugu Meetings
قم بتنزيل ملفات الامتداد Fugu Meetings بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
عنوان صفحة المساعدة | https://jungleworks.com/fugu |
عنوان صفحة سياسة الخصوصية | 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" } } |