Bigger Golem
An extension to enhance the Little Golem experience.
Bigger Golem là gì?
Bigger Golem là một tiện ích mở rộng Chrome được phát triển bởi Adrian Petrescu, và tính năng chính của nó là "An extension to enhance the Little Golem experience.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Bigger Golem
Tải xuống các tệp mở rộng Bigger Golem 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | camnfciehjhogdibimnoghlbedligapl |
URL Chính Thức | https://chromewebstore.google.com/detail/bigger-golem/camnfciehjhogdibimnoghlbedligapl |
Mô tả | An extension to enhance the Little Golem experience. |
Kích Thước Tệp | 365 KB |
Số Lần Cài Đặt | 92 |
Phiên Bản Hiện Tại | 2.8.2 |
Cập Nhật Lần Cuối | 2020-08-21 |
Ngày Phát Hành | 2018-08-07 |
Đánh Giá | 4.89/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | Adrian Petrescu |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://github.com/apetresc/BiggerGolem |
URL Trang Trợ Giúp | http://github.com/apetresc/BiggerGolem/issues |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |