Pokernow HUD

Pokernow HUD

Heads-up display and hand recorder for the poker website pokernow.club. Currently does not support poker variants other than…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Pokernow HUD",
  "version": "10.7",
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "serviceWorker.js"
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://extensionpay.com/*"
      ],
      "js": [
        "ExtPay.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://www.pokernow.club/games/*"
      ],
      "js": [
        "ExtPay.js",
        "thirdParty/jquery.min.js",
        "content.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "donatePopup.html"
      ],
      "matches": [
        "https://www.pokernow.club/*"
      ]
    }
  ]
}