Fugu Meetings

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

Co to jest Fugu Meetings?

Fugu Meetings to rozszerzenie Chrome opracowane przez Jungleworks, a jego główną funkcją jest „A simple extension that allows you to schedule Fugu Conference Meetings.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Fugu Meetings

Pobierz pliki rozszerzeń Fugu Meetings w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Fugu Meetings Fugu Meetings
ID iggbadilcbnfachpbaeodggclajnibcn
Oficjalny URL https://chromewebstore.google.com/detail/fugu-meetings/iggbadilcbnfachpbaeodggclajnibcn
Opis A simple extension that allows you to schedule Fugu Conference Meetings.
Rozmiar pliku 98.73 KB
Liczba instalacji 15
Aktualna Wersja 0.0.3
Ostatnia Aktualizacja 2020-05-06
Data Publikacji 2020-05-06
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Jungleworks
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://fugu.chat
Adres URL Strony Pomocy https://jungleworks.com/fugu
Adres URL Strony Polityki Prywatności https://jungleworks.com/privacy-policy
Obsługiwane Języki 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"
    }
}