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
官方URL 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\/*"
            ]
        }
    ]
}