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 là gì?

Improved BGA game info là một tiện ích mở rộng Chrome được phát triển bởi Thamara Andrade, và tính năng chính của nó là "Be able to see more information from a game in Board Game Arena using Board Game Geek information.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Improved BGA game info

Tải xuống các tệp mở rộng Improved BGA game info dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Improved BGA game info Improved BGA game info
ID hihdoablflnlippakmimnjacpcfpbdni
URL Chính Thức https://chromewebstore.google.com/detail/improved-bga-game-info/hihdoablflnlippakmimnjacpcfpbdni
Mô tả Be able to see more information from a game in Board Game Arena using Board Game Geek information.
Kích Thước Tệp 15.48 KB
Số Lần Cài Đặt 168
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2021-10-18
Ngày Phát Hành 2021-10-18
Đánh Giá 3.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Thamara Andrade
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/thamara/improved-bga-game-info-extension
URL Trang Trợ Giúp https://github.com/thamara/improved-bga-game-info-extension/issues
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}