TileTracker - Carcassonne Companion (BGA)

TileTracker - Carcassonne Companion (BGA)

Track Carcassonne tiles with ease. Manual & auto modes. Elevate your gameplay!

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TileTracker - Carcassonne Companion (BGA)",
  "description": "Track Carcassonne tiles with ease. Manual & auto modes. Elevate your gameplay!",
  "version": "1.4.0.0",
  "manifest_version": 3,
  "permissions": [
    "activeTab",
    "storage"
  ],
  "action": {
    "default_popup": "index.html",
    "default_title": "TileTracker - Carcassonne Companion (BGA)"
  },
  "icons": {
    "128": "./images/logo_carcassonne135.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.boardgamearena.com/*"
      ],
      "css": [
        "borders.css",
        "colors.css"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "borders.css",
        "colors.css",
        "carcassonne-utils.js",
        "json/bg_tile_position_to_id_mapping.js",
        "json/source-tiles.js",
        "tools.js",
        "images/1.svg"
      ],
      "matches": [
        "https://*.boardgamearena.com/*"
      ]
    }
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+B",
        "mac": "Command+B"
      }
    }
  },
  "background": {
    "service_worker": "service_worker.js"
  }
}