Fugu Meetings

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

Vad är Fugu Meetings?

Fugu Meetings är en Chrome-tillägg utvecklad av Jungleworks, och dess huvudfunktion är "A simple extension that allows you to schedule Fugu Conference Meetings.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Fugu Meetings-förlängningens CRX-fil

Ladda ner Fugu Meetings-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Fugu Meetings Fugu Meetings
ID iggbadilcbnfachpbaeodggclajnibcn
Officiell webbadress https://chromewebstore.google.com/detail/fugu-meetings/iggbadilcbnfachpbaeodggclajnibcn
Beskrivning A simple extension that allows you to schedule Fugu Conference Meetings.
Filstorlek 98.73 KB
Antal Installationer 15
Aktuell Version 0.0.3
Senast Uppdaterad 2020-05-06
Publiceringsdatum 2020-05-06
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Jungleworks
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://fugu.chat
Hjälpsida URL https://jungleworks.com/fugu
URL till Sekretesspolicy Sidan https://jungleworks.com/privacy-policy
Stödda Språk 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"
    }
}