Improved BGA game info
Be able to see more information from a game in Board Game Arena using Board Game Geek information.
Cos'è Improved BGA game info?
Improved BGA game info è un'estensione di Chrome sviluppata da Thamara Andrade, e la sua funzione principale è "Be able to see more information from a game in Board Game Arena using Board Game Geek information.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Improved BGA game info
Scarica i file di estensione Improved BGA game info in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Improved BGA game info |
ID | hihdoablflnlippakmimnjacpcfpbdni |
URL Ufficiale | https://chromewebstore.google.com/detail/improved-bga-game-info/hihdoablflnlippakmimnjacpcfpbdni |
Descrizione | Be able to see more information from a game in Board Game Arena using Board Game Geek information. |
Dimensione del File | 15.48 KB |
Conteggio Installazioni | 168 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2021-10-18 |
Data di Pubblicazione | 2021-10-18 |
Valutazione | 3.00/5 Totale 1 Valutazioni |
Sviluppatore | Thamara Andrade |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/thamara/improved-bga-game-info-extension |
URL della Pagina di Aiuto | https://github.com/thamara/improved-bga-game-info-extension/issues |
Lingue Supportate | 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" } ] } |