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.
擴展基本資訊
名稱 | Improved BGA game info |
ID | hihdoablflnlippakmimnjacpcfpbdni |
官方網址 | 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" } ] } |