PVU Zoom

PVU Zoom

Zoom de textos y números para PLANT VS UNDEAD

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "PVU Zoom",
  "description": "Zoom de textos y números para PLANT VS UNDEAD",
  "version": "1.1",
  "author": "Juffyto",
  "icons": {
    "16": "/src/img/icon.png",
    "128": "/src/img/icon.png"
  },
  "background": {
    "scripts": [
      "src/js/BackgroundController.js",
      "src/js/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "/src/img/icon.png",
    "default_title": "PVU Zoom",
    "default_popup": "index.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "https://marketplace.plantvsundead.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://marketplace.plantvsundead.com/*"
      ],
      "js": [
        "src/js/jquery-3.6.0.min.js",
        "src/js/content.js"
      ],
      "css": [],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}