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 |
官方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" } ] } |