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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
        }
    ]
}