Poe.trade Whispers - Tool for Path of Exile

Poe.trade Whispers - Tool for Path of Exile

Tracks whether you've whispered someone.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "default_locale": "en",
  "name": "Poe.trade Whispers - Tool for Path of Exile",
  "description": "Tracks whether you've whispered someone.",
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "*://*.poe.trade/*"
      ],
      "js": [
        "zepto.js",
        "lodash.js",
        "lz-string.js",
        "dayjs.js",
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "background",
    "declarativeContent",
    "storage",
    "*://*.poe.trade/*"
  ],
  "version": "1.0.3",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}