Bigger Golem

An extension to enhance the Little Golem experience.

什么是Bigger Golem?

Bigger Golem是由Adrian Petrescu开发的Chrome扩展程序,该扩展的主要功能是“An extension to enhance the Little Golem experience.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Bigger Golem扩展crx文件

下载Bigger Golem扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Bigger Golem is an extension that aims to bring a variety of improvements to the popular turn-based board game site Little Golem. At the moment, it supports the following features:

   • Icon badge shows how many games it is your turn in (contributed by xentac)
   • Configurable piece sets for Shogi
   • Xboard-compatible PGN downloads for Shogi
   • Configurable (and resizable) piece sets for Chess
   • Configurable (and resizable) piece sets and board color for Reversi (contributed by Trevor Cook)
   • Coordinates for Go boards (contributed by Mathijs Claassen)
   • Fix for broken Hex board design scheme
   • HexGui-compatible SGF downloads for Hex
   • Head-to-head statistics for each player (contributed by Mathijs Claassen)

More features are under active development.

This extension is entirely made by a fan of LG and is not officially associated with LG or Richard Malaschitz in any way.                    

扩展基本信息

名称 Bigger Golem Bigger Golem
ID camnfciehjhogdibimnoghlbedligapl
官方URL https://chromewebstore.google.com/detail/bigger-golem/camnfciehjhogdibimnoghlbedligapl
简介 An extension to enhance the Little Golem experience.
文件大小 365 KB
安装次数 92
当前版本 2.8.2
更新时间 2020-08-21
上架时间 2018-08-07
评分 4.89/5 共9次评分
开发者 Adrian Petrescu
电子邮箱 [email protected]
付费类型 free
扩展官网 http://github.com/apetresc/BiggerGolem
帮助页面URL http://github.com/apetresc/BiggerGolem/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bigger Golem",
    "manifest_version": 2,
    "version": "2.8.2",
    "description": "An extension to enhance the Little Golem experience.",
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "background": {
        "page": "background.html"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": "img\/icons\/golem32.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.littlegolem.net\/jsp\/game\/*"
            ],
            "js": [
                "lib\/jquery-3.2.1.min.js",
                "src\/shogi_style.js",
                "src\/go_style.js",
                "src\/chess_style.js",
                "src\/reversi_style.js",
                "src\/hex_style.js",
                "src\/requests.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.littlegolem.net\/jsp\/info\/player_game_list.jsp?*",
                "*:\/\/*.littlegolem.net\/jsp\/info\/player.jsp?plid=*"
            ],
            "js": [
                "lib\/jquery-3.2.1.min.js",
                "src\/stats.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "img\/*"
    ],
    "icons": {
        "16": "img\/icons\/golem16.png",
        "48": "img\/icons\/golem48.png",
        "128": "img\/icons\/golem128.png"
    },
    "permissions": [
        "storage",
        "https:\/\/littlegolem.net\/*",
        "https:\/\/www.littlegolem.net\/*",
        "http:\/\/littlegolem.net\/*",
        "http:\/\/www.littlegolem.net\/*"
    ]
}