BoardGameArena Extension

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

什麼是BoardGameArena Extension?

BoardGameArena Extension是由Christophe Delaforge開發的Chrome擴展程式,該擴展的主要功能是“A chrome extension for https://boardgamearena.com/”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載BoardGameArena Extension擴展crx文件

下載BoardGameArena Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 BoardGameArena Extension BoardGameArena Extension
ID jdiekdaapekbemobdeacplcfmignidoc
官方網址 https://chromewebstore.google.com/detail/boardgamearena-extension/jdiekdaapekbemobdeacplcfmignidoc
簡介 A chrome extension for https://boardgamearena.com/
檔案大小 237 KB
安裝次數 104
目前版本 1.3.7
更新時間 2024-02-20
上架時間 2023-04-26
評分 5.00/5 共 2 次評分
開發者 Christophe Delaforge
電子郵箱 [email protected]
付費類型 free
支援的語言 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\/*"
            ]
        }
    ]
}