Individual Fullscreen for Google Meet

This is an unofficial extension that allows You to make any video source fullscreen in a google meeting.

Co to jest Individual Fullscreen for Google Meet?

Individual Fullscreen for Google Meet to rozszerzenie Chrome opracowane przez angeloevan.ane, a jego główną funkcją jest „This is an unofficial extension that allows You to make any video source fullscreen in a google meeting.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Individual Fullscreen for Google Meet

Pobierz pliki rozszerzeń Individual Fullscreen for Google Meet 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

                        This extension basically enables a fullscreen button when a video source is added on a google meeting, so You can maximize it and pay attention to every detail is being shared with You 😉                    

Podstawowe informacje o rozszerzeniu

Nazwa Individual Fullscreen for Google Meet Individual Fullscreen for Google Meet
ID mkcelnnddmnidbakjahnjchdnapdbjgn
Oficjalny URL https://chromewebstore.google.com/detail/individual-fullscreen-for/mkcelnnddmnidbakjahnjchdnapdbjgn
Opis This is an unofficial extension that allows You to make any video source fullscreen in a google meeting.
Rozmiar pliku 11.21 KB
Liczba instalacji 359
Aktualna Wersja 1.0.5
Ostatnia Aktualizacja 2024-02-25
Data Publikacji 2022-11-29
Ocena 5.00/5 Łącznie 7 Oceny
Deweloper angeloevan.ane
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/angeloevangelista/google-meet-fullscreen
Adres URL Strony Pomocy https://github.com/angeloevangelista/google-meet-fullscreen/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Individual Fullscreen for Google Meet",
    "description": "This is an unofficial extension that allows You to make any video source fullscreen in a google meeting.",
    "homepage_url": "https:\/\/github.com\/angeloevangelista\/google-meet-fullscreen",
    "version": "1.0.5",
    "manifest_version": 3,
    "icons": {
        "16": ".\/icons\/16.png",
        "48": ".\/icons\/48.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "js": [
                "enable_fullscreen.js"
            ],
            "matches": [
                "https:\/\/meet.google.com\/*"
            ]
        }
    ],
    "permissions": []
}