Shared Game Timer Overlay

Shared Game Timer Overlay

Overlays controls for the Shared Game Timer.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Shared Game Timer Overlay",
  "description": "Overlays controls for the Shared Game Timer.",
  "version": "2.6",
  "icons": {
    "16": "icons/default-16.png",
    "32": "icons/default-32.png",
    "48": "icons/default-48.png",
    "64": "icons/default-64.png",
    "128": "icons/default-128.png"
  },
  "action": {
    "default_title": "Click to activate the Game Timer overlay"
  },
  "background": {
    "service_worker": "sw.js"
  },
  "permissions": [
    "activeTab",
    "storage",
    "scripting"
  ],
  "offline_enabled": false,
  "commands": {
    "show-hide-log": {
      "suggested_key": {
        "default": "Alt+L"
      },
      "description": "Show/Hide Transaction Log"
    },
    "show-hide-opponent-score": {
      "suggested_key": {
        "default": "Alt+O"
      },
      "description": "Show/Hide Opponent Scores"
    },
    "transact-money": {
      "suggested_key": {
        "default": "Alt+M"
      },
      "description": "Start Transaction (Money)"
    },
    "transact-vp": {
      "suggested_key": {
        "default": "Alt+V"
      },
      "description": "Start Transaction (VP)"
    }
  }
}