PoB Trade Helper

PoB Trade Helper

A web extension that connects to your local PoB and shows you the impact of trade on your build.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "PoB Trade Helper",
  "version": "0.1",
  "description": "A web extension that connects to your local PoB and shows you the impact of trade on your build.",
  "icons": {
    "16": "img/icon-16.png",
    "32": "img/icon-32.png",
    "128": "img/icon-128.png",
    "335": "img/icon-335.png"
  },
  "action": {
    "default_icon": {
      "38": "img/icon-38.png",
      "128": "img/icon-128.png",
      "335": "img/icon-335.png"
    },
    "default_title": "PoB Trade Helper"
  },
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.pathofexile.com/trade/*"
      ],
      "css": [
        "css/style.css",
        "css/trade.css"
      ],
      "js": [
        "js/trade.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/trade-injected.js",
        "img/icon-40.png",
        "img/error-40.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "nativeMessaging"
  ]
}