BoardGameArena Extension

A chrome extension for https://boardgamearena.com/

BoardGameArena Extension là gì?

BoardGameArena Extension là một tiện ích mở rộng Chrome được phát triển bởi Christophe Delaforge, và tính năng chính của nó là "A chrome extension for https://boardgamearena.com/".

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

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng BoardGameArena Extension

Tải xuống các tệp mở rộng BoardGameArena Extension 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 extension is no longer maintained as the project has been merged with this one: https://chrome.google.com/webstore/detail/bga-chrome-extension/kchnhmpeopknjdjejognciimepllkacb


-------------------------------------

This extension adds the following features to the BoardGameArena:

1) A vertical menu on the left edge of the screen to easily navigate between the players' boards.
This feature is available for 100 games so far. Don't hesitate to ask me if you want a game to be added!

2) An option to enable/disable messages about your friends' activity in the game log.
These messages are disabled by default in the extension.

3) An option to display the game log and the player panels in a floating menu on the right. This saves space for the game itself if your screen is too small.
This option is disabled by default in the extension.

4) A button for 'deleting' a game. This button appears next to the button for starting the game in the list of games.
Deleted games no longer appear in the list of games or in the lobby.
You can cancel the deletion of a game from the extension options screen.

5) An icon to hide/display the global chat, in the top right corner of the screen.                    

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

Tên BoardGameArena Extension BoardGameArena Extension
ID jdiekdaapekbemobdeacplcfmignidoc
URL Chính Thức https://chromewebstore.google.com/detail/boardgamearena-extension/jdiekdaapekbemobdeacplcfmignidoc
Mô tả A chrome extension for https://boardgamearena.com/
Kích Thước Tệp 237 KB
Số Lần Cài Đặt 104
Phiên Bản Hiện Tại 1.3.7
Cập Nhật Lần Cuối 2024-02-20
Ngày Phát Hành 2023-04-26
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Christophe Delaforge
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "__MSG_appDesc__",
    "version": "1.3.7",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "default_locale": "en",
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.bundle.js",
        "type": "module"
    },
    "host_permissions": [
        "https:\/\/boardgamearena.com\/"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/boardgamearena.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": [
                "https:\/\/boardgamearena.com\/*"
            ]
        }
    ]
}