PDGA Profiler

PDGA Profiler

Get player info by hovering player's name

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PDGA Profiler",
  "version": "0.3.5",
  "description": "Get player info by hovering player's name",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "js/jquery-3.4.1.min.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.pdga.com/*"
      ],
      "js": [
        "js/jquery-3.4.1.min.js",
        "js/background.js",
        "js/purify.min.js"
      ],
      "css": [
        "css/profiler.css"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "icons/PDGAprofiler16.png",
    "32": "icons/PDGAprofiler32.png",
    "48": "icons/PDGAprofiler48.png",
    "128": "icons/PDGAprofiler128.png"
  }
}