Poker Now Pot Odds Calculator

Poker Now Pot Odds Calculator

This extension adds a pot odds widget to the Poker Now website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Poker Now Pot Odds Calculator",
  "version": "1.0.3",
  "manifest_version": 2,
  "description": "This extension adds a pot odds widget to the Poker Now website.",
  "homepage_url": "https://www.pokernow.club",
  "icons": {
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "https://www.pokernow.club/games/*"
      ],
      "css": [
        "src/inject/inject.css"
      ]
    },
    {
      "matches": [
        "https://www.pokernow.club/games/*"
      ],
      "run_at": "document_idle",
      "js": [
        "js/jquery-3.5.1.min.js",
        "src/inject/inject.js"
      ]
    }
  ]
}