Improved BGA game info
Be able to see more information from a game in Board Game Arena using Board Game Geek information.
Improved BGA game info란 무엇입니까?
Improved BGA game info은(는) Thamara Andrade에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Be able to see more information from a game in Board Game Arena using Board Game Geek information."입니다.
확장 프로그램 스크린샷
Improved BGA game info 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is a browser extension that will display more information about a given game when visiting its page on Board Game Arena. This includes the weigth, rating, ranking and also the the category and mechanisms of the game. You'll also have a link to quickly look into the game in Board Game Geek. All information about a game is sourced from Board Game Geek.
확장 프로그램 기본 정보
이름 | Improved BGA game info |
ID | hihdoablflnlippakmimnjacpcfpbdni |
공식 URL | https://chromewebstore.google.com/detail/improved-bga-game-info/hihdoablflnlippakmimnjacpcfpbdni |
설명 | Be able to see more information from a game in Board Game Arena using Board Game Geek information. |
파일 크기 | 15.48 KB |
설치 횟수 | 168 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2021-10-18 |
출시 날짜 | 2021-10-18 |
평점 | 3.00/5 총 1 개의 평점 |
개발자 | Thamara Andrade |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/thamara/improved-bga-game-info-extension |
도움말 페이지 URL | https://github.com/thamara/improved-bga-game-info-extension/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Improved BGA game info", "description": "Be able to see more information from a game in Board Game Arena using Board Game Geek information.", "version": "1.0.0", "manifest_version": 2, "icons": { "16": "icons\/extension_toolbar_icon16.png", "32": "icons\/extension_toolbar_icon32.png", "48": "icons\/extension_toolbar_icon48.png", "128": "icons\/extension_toolbar_icon128.png" }, "permissions": [ "https:\/\/boardgamearena.com\/gamepanel*", "https:\/\/www.boardgamegeek.com\/xmlapi2\/*", "webNavigation" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "css": [ "styles.css" ], "js": [ "content.js" ], "matches": [ "https:\/\/boardgamearena.com\/gamepanel*" ], "run_at": "document_end" } ] } |