Improved BGA game info

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

Wat is Improved BGA game info?

Improved BGA game info is een Chrome-extensie ontwikkeld door Thamara Andrade, en de belangrijkste functie is "Be able to see more information from a game in Board Game Arena using Board Game Geek information.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Improved BGA game info

Download Improved BGA game info-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Improved BGA game info Improved BGA game info
ID hihdoablflnlippakmimnjacpcfpbdni
Officiële URL https://chromewebstore.google.com/detail/improved-bga-game-info/hihdoablflnlippakmimnjacpcfpbdni
Beschrijving Be able to see more information from a game in Board Game Arena using Board Game Geek information.
Bestandsgrootte 15.48 KB
Aantal Installaties 168
Huidige Versie 1.0.0
Laatst Bijgewerkt 2021-10-18
Publicatiedatum 2021-10-18
Beoordeling 3.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Thamara Andrade
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/thamara/improved-bga-game-info-extension
Help Pagina-URL https://github.com/thamara/improved-bga-game-info-extension/issues
Ondersteunde Talen 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"
        }
    ]
}