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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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" } } |