Google Meet Dice Roller

Dice roller extension for RPG players using Google Meet

Co to jest Google Meet Dice Roller?

Google Meet Dice Roller to rozszerzenie Chrome opracowane przez Rafael Vasconcelos, a jego główną funkcją jest „Dice roller extension for RPG players using Google Meet”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Google Meet Dice Roller

Pobierz pliki rozszerzeń Google Meet Dice Roller 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

                        Dice roller extension for RPG players using Google Meet.

Source code, change log, how to use and issue tracker in the project's Github page:

https://github.com/rafaelvascc/google-meet-dice-roller

IMPORTANT: The "Browsing History Access" permission is no longer necessary!

On the previous version, the "Roll Dice!" button in the user interface used to use the chrome tabs api. By simply requesting access to use this api, the extension was marked as "requiring browser history".

This api isn't necessary anymore, so the extension will no longer require access to browsing history.                    

Podstawowe informacje o rozszerzeniu

Nazwa Google Meet Dice Roller Google Meet Dice Roller
ID lpmdpndjiddedlpjgomjhpgmkaochlkg
Oficjalny URL https://chromewebstore.google.com/detail/google-meet-dice-roller/lpmdpndjiddedlpjgomjhpgmkaochlkg
Opis Dice roller extension for RPG players using Google Meet
Rozmiar pliku 1.13 MB
Liczba instalacji 4,642
Aktualna Wersja 1.2.1
Ostatnia Aktualizacja 2022-04-04
Data Publikacji 2020-07-11
Ocena 4.18/5 Łącznie 11 Oceny
Deweloper Rafael Vasconcelos
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/rafaelvascc/google-meet-dice-roller
Adres URL Strony Pomocy https://github.com/rafaelvascc/google-meet-dice-roller/issues
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google Meet Dice Roller",
    "version": "1.2.1",
    "description": "Dice roller extension for RPG players using Google Meet",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icons\/64.png",
        "32": "icons\/64.png",
        "48": "icons\/64.png",
        "128": "icons\/128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "ui\/*.png",
                "icons\/*.png",
                "assets\/*.png"
            ],
            "matches": [
                "*:\/\/meet.google.com\/*"
            ]
        }
    ],
    "action": {
        "default_icon": "icons\/128.png"
    },
    "host_permissions": [
        "*:\/\/meet.google.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "content-scripts\/index.js",
                "ui\/index.js"
            ]
        }
    ]
}