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ファイルをダウンロード
Improved BGA game info拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
]
} | |