Path of Exile Inventory Helper

Path of Exile Inventory Helper

Inventory and Crafting Helper for Path of Exile

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Path of Exile Inventory Helper",
  "short_name": "PoE Helper",
  "version": "0.97",
  "description": "Inventory and Crafting Helper for Path of Exile",
  "icons": {
    "16": "assets/images/icon_16.png",
    "128": "assets/images/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.pathofexile.com/*"
      ],
      "js": [
        "assets/js/jquery-1.7.2.js",
        "assets/js/injector.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "permissions": [
    "activeTab",
    "cookies",
    "https://www.pathofexile.com/*",
    "clipboardWrite",
    "clipboardRead",
    "unlimitedStorage"
  ],
  "web_accessible_resources": [
    "*.js",
    "main.html",
    "item-data/*",
    "assets/*",
    "manifest.json"
  ]
}