PokerNow Action Tracker

PokerNow Action Tracker

● Analyzed system design of popular poker website to display betting action from poker hands in real time ● Navigate DOM of…

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 Action Tracker",
  "version": "1.0.1",
  "content_scripts": [
    {
      "matches": [
        "*://*.pokernow.club/*"
      ],
      "js": [
        "UI/content.js"
      ],
      "css": [
        "UI/styles.css"
      ]
    }
  ],
  "host_permissions": [
    "*://*.pokernow.club/*"
  ]
}