Inspect and view changes in Improved BGA game info source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"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"
}
]
}