Poe Trade QoL

Poe Trade QoL

Using the chest structure to trade consumables

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Poe Trade QoL",
  "version": "1.4.6.1",
  "description": "Using the chest structure to trade consumables",
  "host_permissions": [
    "https://www.pathofexile.com/api/trade/exchange/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.pathofexile.com/trade/*"
      ],
      "js": [
        "jquery-3.6.1.min.js",
        "app.js"
      ],
      "css": [
        "pathTrade.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "modalChest.html",
        "*.png",
        "*.jpg",
        "*.css"
      ],
      "matches": [
        "*://*.pathofexile.com/*"
      ],
      "use_dynamic_url": true
    }
  ],
  "icons": {
    "16": "/images/get_started16.png",
    "32": "/images/get_started32.png",
    "48": "/images/get_started48.png",
    "128": "/images/get_started128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/get_started16.png",
      "32": "/images/get_started32.png",
      "48": "/images/get_started48.png",
      "128": "/images/get_started128.png"
    }
  },
  "options_page": "options.html",
  "permissions": [
    "storage"
  ]
}