Fugu Meetings
A simple extension that allows you to schedule Fugu Conference Meetings.
Fugu Meetings là gì?
Fugu Meetings là một tiện ích mở rộng Chrome được phát triển bởi Jungleworks, và tính năng chính của nó là "A simple extension that allows you to schedule Fugu Conference Meetings.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Fugu Meetings
Tải xuống các tệp mở rộng Fugu Meetings dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Fugu Meetings |
ID | iggbadilcbnfachpbaeodggclajnibcn |
URL Chính Thức | https://chromewebstore.google.com/detail/fugu-meetings/iggbadilcbnfachpbaeodggclajnibcn |
Mô tả | A simple extension that allows you to schedule Fugu Conference Meetings. |
Kích Thước Tệp | 98.73 KB |
Số Lần Cài Đặt | 15 |
Phiên Bản Hiện Tại | 0.0.3 |
Cập Nhật Lần Cuối | 2020-05-06 |
Ngày Phát Hành | 2020-05-06 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Jungleworks |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://fugu.chat |
URL Trang Trợ Giúp | https://jungleworks.com/fugu |
URL Trang Chính Sách Bảo Mật | https://jungleworks.com/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |