Improved BGA game info

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

Was ist Improved BGA game info?

Improved BGA game info ist eine Chrome-Erweiterung, die von Thamara Andrade entwickelt wurde, und ihr Hauptmerkmal ist "Be able to see more information from a game in Board Game Arena using Board Game Geek information.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Improved BGA game info-Erweiterungs-CRX-Datei herunterladen

Laden Sie Improved BGA game info-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Improved BGA game info Improved BGA game info
ID hihdoablflnlippakmimnjacpcfpbdni
Offizielle URL https://chromewebstore.google.com/detail/improved-bga-game-info/hihdoablflnlippakmimnjacpcfpbdni
Beschreibung Be able to see more information from a game in Board Game Arena using Board Game Geek information.
Dateigröße 15.48 KB
Installationsanzahl 168
Aktuelle Version 1.0.0
Letztes Update 2021-10-18
Veröffentlichungsdatum 2021-10-18
Bewertung 3.00/5 Insgesamt 1 Bewertungen
Entwickler Thamara Andrade
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/thamara/improved-bga-game-info-extension
Hilfeseite URL https://github.com/thamara/improved-bga-game-info-extension/issues
Unterstützte Sprachen 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"
        }
    ]
}