PathOfExile Trade Tab Plus

PathOfExile Trade Tab Plus

Add customized names to your trade site tabs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PathOfExile Trade Tab Plus",
  "description": "Add customized names to your trade site tabs.",
  "version": "1.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab",
    "storage",
    "scripting",
    "tabs"
  ],
  "host_permissions": [
    "https://*.pathofexile.com/trade/*",
    "http://*.pathofexile.com/trade/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "PathOfExile Trade Tab Plus",
    "default_icon": {
      "16": "/images/favicon-16x16.png",
      "32": "/images/favicon-32x32.png",
      "128": "/images/favicon-128x128.png"
    }
  },
  "icons": {
    "16": "/images/favicon-16x16.png",
    "32": "/images/favicon-32x32.png",
    "128": "/images/favicon-128x128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_idle",
      "matches": [
        "https://*.pathofexile.com/trade/*",
        "http://*.pathofexile.com/trade/*"
      ],
      "js": [
        "namescript.js"
      ]
    }
  ]
}