Fugu Meetings

A simple extension that allows you to schedule Fugu Conference Meetings.

什麼是Fugu Meetings?

Fugu Meetings是由Jungleworks開發的Chrome擴展程式,該擴展的主要功能是“A simple extension that allows you to schedule Fugu Conference Meetings.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Fugu Meetings擴展crx文件

下載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 Fugu Meetings
ID iggbadilcbnfachpbaeodggclajnibcn
官方網址 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"
    }
}