Fugu Meetings

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

Qu'est-ce que Fugu Meetings ?

Fugu Meetings est une extension Chrome développée par Jungleworks, et sa fonction principale est "A simple extension that allows you to schedule Fugu Conference Meetings.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Fugu Meetings

Téléchargez les fichiers d'extension Fugu Meetings au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Fugu Meetings Fugu Meetings
ID iggbadilcbnfachpbaeodggclajnibcn
URL Officiel https://chromewebstore.google.com/detail/fugu-meetings/iggbadilcbnfachpbaeodggclajnibcn
Description A simple extension that allows you to schedule Fugu Conference Meetings.
Taille du Fichier 98.73 KB
Nombre d'Installations 15
Version Actuelle 0.0.3
Dernière Mise à Jour 2020-05-06
Date de Publication 2020-05-06
Évaluation 5.00/5 Total 2 Évaluations
Développeur Jungleworks
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://fugu.chat
URL de la Page d'Aide https://jungleworks.com/fugu
URL de la Page de Politique de Confidentialité https://jungleworks.com/privacy-policy
Langues Prises en Charge 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"
    }
}