PvU Helper

PvU Helper

Complements the user interface on the PvU web site.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "version": "1.0.2",
  "description": "__MSG_extDescription__",
  "permissions": [],
  "author": "NextNextDev <nextnextdev@gmail.com>",
  "background": {
    "scripts": [
      "background.bundle.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "__MSG_extName__",
    "default_popup": "start.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://marketplace.plantvsundead.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "checkId.bundle.js",
        "profit.bundle.js"
      ]
    }
  ],
  "default_locale": "en",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "web_accessible_resources": [
    "*.html",
    "*.png",
    "*.eot",
    "*.woff",
    "*.woff2",
    "*.ttf",
    "*.svg"
  ]
}