Forgotten Mods

Forgotten Mods

A tool for augmenting poe.trade experience. See official forum thread at https://www.pathofexile.com/forum/view-thread/1164052

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Forgotten Mods",
  "version": "0.8.2",
  "description": "A tool for augmenting poe.trade experience. See official forum thread at  https://www.pathofexile.com/forum/view-thread/1164052",
  "author": "ManicCompression",
  "minimum_chrome_version": "17",
  "icons": {
    "128": "forgotten-mods-icon.png"
  },
  "browser_action": {
    "default_icon": "forgotten-mods-icon.png",
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "background": {
    "page": "background.html"
  },
  "permissions": [
    "http://www.poe.trade/*",
    "http://poe.trade/*",
    "webRequest",
    "storage"
  ],
  "web_accessible_resources": [
    "contentscript.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://poe.trade/search/*",
        "http://www.poe.trade/search/*"
      ],
      "js": [
        "contentscript.js"
      ],
      "run_at": "document_idle"
    }
  ]
}