PMMG Extended

PMMG Extended

Improve and tweak the interface elements of PrUn website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "PMMG Extended",
  "description": "Improve and tweak the interface elements of PrUn website",
  "version": "1.11.3",
  "icons": {
    "128": "icon128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "service_worker.js"
  },
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "tabs"
  ],
  "host_permissions": [
    "https://apex.prosperousuniverse.com/",
    "https://script.google.com/",
    "https://script.googleusercontent.com/",
    "https://rest.fnar.net/"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://apex.prosperousuniverse.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "main.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://apex.prosperousuniverse.com/*"
      ],
      "resources": [
        "page_script.js",
        "uploader.js"
      ]
    }
  ]
}