Improved BGA game info

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

Improved BGA game info क्या है?

Improved BGA game info Thamara Andrade द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Be able to see more information from a game in Board Game Arena using Board Game Geek information."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Improved BGA game info एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Improved BGA game info Improved BGA game info
ID hihdoablflnlippakmimnjacpcfpbdni
आधिकारिक URL https://chromewebstore.google.com/detail/improved-bga-game-info/hihdoablflnlippakmimnjacpcfpbdni
विवरण Be able to see more information from a game in Board Game Arena using Board Game Geek information.
फ़ाइल का आकार 15.48 KB
स्थापना संख्या 168
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2021-10-18
प्रकाशन तिथि 2021-10-18
रेटिंग 3.00/5 कुल 1 रेटिंग्स
डेवलपर Thamara Andrade
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/thamara/improved-bga-game-info-extension
सहायता पृष्ठ URL https://github.com/thamara/improved-bga-game-info-extension/issues
समर्थित भाषाएँ 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"
        }
    ]
}