Plug Stats

Plug Stats

This extension adds a stats panel for recent plays in plug.dj

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Plug Stats",
  "description": "This extension adds a stats panel for recent plays in plug.dj",
  "version": "1.1",
  "content_scripts": [
    {
      "matches": [
        "*://plug.dj/*"
      ],
      "js": [
        "injector.js"
      ],
      "css": [
        "css/plug.css"
      ],
      "exclude_matches": [
        "*://plug.dj/about",
        "*://plug.dj/terms",
        "*://plug.dj/privacy"
      ]
    }
  ],
  "permissions": [],
  "web_accessible_resources": [
    "css/*.css",
    "*.js",
    "*.html"
  ]
}