Improved BGA game info

Be able to see more information from a game in Board Game Arena using Board Game Geek information.

Co to jest Improved BGA game info?

Improved BGA game info to rozszerzenie Chrome opracowane przez Thamara Andrade, a jego główną funkcją jest „Be able to see more information from a game in Board Game Arena using Board Game Geek information.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Improved BGA game info

Pobierz pliki rozszerzeń Improved BGA game info 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 is a browser extension that will display more information about a given game when visiting its page on Board Game Arena. This includes the weigth, rating, ranking and also the the category and mechanisms of the game.
You'll also have a link to quickly look into the game in Board Game Geek.

All information about a game is sourced from Board Game Geek.                    

Podstawowe informacje o rozszerzeniu

Nazwa Improved BGA game info Improved BGA game info
ID hihdoablflnlippakmimnjacpcfpbdni
Oficjalny URL https://chromewebstore.google.com/detail/improved-bga-game-info/hihdoablflnlippakmimnjacpcfpbdni
Opis Be able to see more information from a game in Board Game Arena using Board Game Geek information.
Rozmiar pliku 15.48 KB
Liczba instalacji 168
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2021-10-18
Data Publikacji 2021-10-18
Ocena 3.00/5 Łącznie 1 Oceny
Deweloper Thamara Andrade
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/thamara/improved-bga-game-info-extension
Adres URL Strony Pomocy https://github.com/thamara/improved-bga-game-info-extension/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Improved BGA game info",
    "description": "Be able to see more information from a game in Board Game Arena using Board Game Geek information.",
    "version": "1.0.0",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/extension_toolbar_icon16.png",
        "32": "icons\/extension_toolbar_icon32.png",
        "48": "icons\/extension_toolbar_icon48.png",
        "128": "icons\/extension_toolbar_icon128.png"
    },
    "permissions": [
        "https:\/\/boardgamearena.com\/gamepanel*",
        "https:\/\/www.boardgamegeek.com\/xmlapi2\/*",
        "webNavigation"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/boardgamearena.com\/gamepanel*"
            ],
            "run_at": "document_end"
        }
    ]
}