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."입니다.
확장 프로그램 스크린샷
Bigger Golem 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | |
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\/*" ] } |