Improved BGA game info
Be able to see more information from a game in Board Game Arena using Board Game Geek information.
Qu'est-ce que Improved BGA game info ?
Improved BGA game info est une extension Chrome développée par Thamara Andrade, et sa fonction principale est "Be able to see more information from a game in Board Game Arena using Board Game Geek information.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Improved BGA game info
Téléchargez les fichiers d'extension Improved BGA game info au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Improved BGA game info |
ID | hihdoablflnlippakmimnjacpcfpbdni |
URL Officiel | https://chromewebstore.google.com/detail/improved-bga-game-info/hihdoablflnlippakmimnjacpcfpbdni |
Description | Be able to see more information from a game in Board Game Arena using Board Game Geek information. |
Taille du Fichier | 15.48 KB |
Nombre d'Installations | 168 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2021-10-18 |
Date de Publication | 2021-10-18 |
Évaluation | 3.00/5 Total 1 Évaluations |
Développeur | Thamara Andrade |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/thamara/improved-bga-game-info-extension |
URL de la Page d'Aide | https://github.com/thamara/improved-bga-game-info-extension/issues |
Langues Prises en Charge | 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" } ] } |