Recent Meeting Codes

Adds buttons to launch recently used Meeting Codes to the Google Meet page for Google Classroom

Co to jest Recent Meeting Codes?

Recent Meeting Codes to rozszerzenie Chrome opracowane przez https://johnriv.github.io/recent-meeting-codes, a jego główną funkcją jest „Adds buttons to launch recently used Meeting Codes to the Google Meet page for Google Classroom”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Recent Meeting Codes

Pobierz pliki rozszerzeń Recent Meeting Codes 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

                        For Google Meet users with .edu accounts, this adds a list of buttons of recently used meeting codes to the Google Meet page to easily launch Google Meets with those meeting codes. For students & teachers whose classes use Google Meet instead of Google Classroom Meet Links, this allows them 1-click access to join their classes instead of having to type the same meeting code every day.                    

Podstawowe informacje o rozszerzeniu

Nazwa Recent Meeting Codes Recent Meeting Codes
ID jblnhjdigaepgkbclpggccmhcmnpkghf
Oficjalny URL https://chromewebstore.google.com/detail/recent-meeting-codes/jblnhjdigaepgkbclpggccmhcmnpkghf
Opis Adds buttons to launch recently used Meeting Codes to the Google Meet page for Google Classroom
Rozmiar pliku 17.88 KB
Liczba instalacji 322
Aktualna Wersja 2.0.0
Ostatnia Aktualizacja 2021-02-22
Data Publikacji 2021-01-04
Ocena 2.00/5 Łącznie 4 Oceny
Deweloper https://johnriv.github.io/recent-meeting-codes
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://github.com/JohnRiv/recent-meeting-codes/issues
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Recent Meeting Codes",
    "version": "2.0.0",
    "description": "Adds buttons to launch recently used Meeting Codes to the Google Meet page for Google Classroom",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/",
                "https:\/\/meet.google.com\/?*"
            ],
            "css": [
                "recentMeetingCodes.css"
            ],
            "js": [
                "recentMeetingCodes.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}