OpenHUD

OpenHUD

An open-source online poker head-up display.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "OpenHUD",
  "version": "1.17",
  "description": "An open-source online poker head-up display.",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://app.ggn.live/*/table/*",
        "https://*.ggpoker.network/*/table/*",
        "https://app.good-game-network.com/*/table/*"
      ],
      "js": [
        "jquery-3.3.1.slim.min.js",
        "common.js",
        "ServicesManager.js",
        "Service.js",
        "openhud.ggnetwork.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "images/icon16.png",
      "24": "images/icon24.png",
      "32": "images/icon32.png"
    },
    "default_title": "Open HUD",
    "default_popup": "toolbar.html"
  },
  "permissions": [
    "storage"
  ]
}