Improved BGA game info
Be able to see more information from a game in Board Game Arena using Board Game Geek information.
Vad är Improved BGA game info?
Improved BGA game info är en Chrome-tillägg utvecklad av Thamara Andrade, och dess huvudfunktion är "Be able to see more information from a game in Board Game Arena using Board Game Geek information.".
Tilläggsskärmbilder
Ladda ner Improved BGA game info-förlängningens CRX-fil
Ladda ner Improved BGA game info-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | hihdoablflnlippakmimnjacpcfpbdni |
| Officiell webbadress | https://chromewebstore.google.com/detail/improved-bga-game-info/hihdoablflnlippakmimnjacpcfpbdni |
| Beskrivning | Be able to see more information from a game in Board Game Arena using Board Game Geek information. |
| Filstorlek | 15.48 KB |
| Antal Installationer | 168 |
| Aktuell Version | 1.0.0 |
| Senast Uppdaterad | 2021-10-18 |
| Publiceringsdatum | 2021-10-18 |
| Betyg | 3.00/5 Totalt 1 Betyg |
| Utvecklare | Thamara Andrade |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/thamara/improved-bga-game-info-extension |
| Hjälpsida URL | https://github.com/thamara/improved-bga-game-info-extension/issues |
| Stödda Språk | 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"
}
]
} | |