This extension monitors the games you're playing (on Board Game Arena and Codenames) and sends your results at the game's end on your Discord server.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "Dino's Bot",
"version": "1.1",
"description": "__MSG_extensionDescription__",
"icons": {
"48": "icons/icon-green-48.png",
"64": "icons/icon-green-64.png",
"128": "icons/icon-green-128.png",
"512": "icons/icon-green-512.png"
},
"background": {
"persistent": false,
"scripts": [
"scripts/dino.js"
],
"type": "module"
},
"browser_action": {
"default_icon": "icons/icon-grey-48.png",
"default_title": "Dino's Bot"
},
"browser_specific_settings": {
"gecko": {
"id": "addon-dino@vincescodes.com"
}
},
"content_scripts": [
{
"matches": [
"*://boardgamearena.com/*"
],
"js": [
"scripts/bga-gamer.js",
"scripts/bga-gamers.js",
"scripts/dino-bga.js"
]
},
{
"matches": [
"*://codenames.game/*"
],
"js": [
"scripts/codenames-board.js",
"scripts/codenames-card.js",
"scripts/codenames-heading.js",
"scripts/codenames-team.js",
"scripts/dino-codenames.js"
]
}
],
"default_locale": "en",
"options_ui": {
"page": "html/settings.html"
},
"permissions": [
"storage",
"webRequest",
"*://www.vincescodes.com/*"
]
}