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 هو إضافة Chrome تم تطويرها بواسطة Thamara Andrade، والميزة الرئيسية لها هي "Be able to see more information from a game in Board Game Arena using Board Game Geek information.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Improved BGA game info

قم بتنزيل ملفات الامتداد Improved BGA game info بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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"
        }
    ]
}