PlugGrab

PlugGrab

PlugGrab is a Chrome Extension for 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": "PlugGrab",
  "short_name": "PlugGrab",
  "description": "PlugGrab is a Chrome Extension for plug.dj",
  "version": "1.0.0",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "*://*.plug.dj/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://plug.dj/*"
      ],
      "exclude_matches": [
        "*://plug.dj/about",
        "*://plug.dj/terms",
        "*://plug.dj/privacy"
      ],
      "js": [
        "jquery.js",
        "loader.js"
      ],
      "run_at": "document_end"
    }
  ]
}