Fugu Meetings

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

Cos'è Fugu Meetings?

Fugu Meetings è un'estensione di Chrome sviluppata da Jungleworks, e la sua funzione principale è "A simple extension that allows you to schedule Fugu Conference Meetings.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Fugu Meetings

Scarica i file di estensione Fugu Meetings in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Fugu Meetings Fugu Meetings
ID iggbadilcbnfachpbaeodggclajnibcn
URL Ufficiale https://chromewebstore.google.com/detail/fugu-meetings/iggbadilcbnfachpbaeodggclajnibcn
Descrizione A simple extension that allows you to schedule Fugu Conference Meetings.
Dimensione del File 98.73 KB
Conteggio Installazioni 15
Versione Corrente 0.0.3
Ultimo Aggiornamento 2020-05-06
Data di Pubblicazione 2020-05-06
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Jungleworks
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://fugu.chat
URL della Pagina di Aiuto https://jungleworks.com/fugu
URL della Pagina della Politica sulla Privacy https://jungleworks.com/privacy-policy
Lingue Supportate 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"
    }
}