TFT Trade Extension

TFT Trade Extension

An extension which integrates TFT branded tools into your browser. It provides safer and easier trading in Path of Exile.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "TFT Trade Extension",
  "version": "2.5.1",
  "description": "An extension which integrates TFT branded tools into your browser. It provides safer and easier trading in Path of Exile",
  "manifest_version": 2,
  "browser_action": {
    "default_popup": "navBarPopup.html",
    "default_icon": {
      "16": "./TFTExtension-16x16.png",
      "32": "./TFTExtension-32x32.png",
      "48": "./TFTExtension-48x48.png",
      "128": "./TFTExtension-128x128.png"
    }
  },
  "icons": {
    "16": "./TFTExtension-16x16.png",
    "32": "./TFTExtension-32x32.png",
    "48": "./TFTExtension-48x48.png",
    "128": "./TFTExtension-128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.pathofexile.com/trade*",
        "https://br.pathofexile.com/trade*",
        "https://ru.pathofexile.com/trade*",
        "https://th.pathofexile.com/trade*",
        "https://de.pathofexile.com/trade*",
        "https://fr.pathofexile.com/trade*",
        "https://es.pathofexile.com/trade*",
        "https://poe.game.daum.net/trade*"
      ],
      "css": [
        "style.bundle.css"
      ],
      "js": [
        "foreground.bundle.js",
        "injectedMenu.bundle.js"
      ]
    },
    {
      "matches": [
        "https://www.pathofexile.com/guild*",
        "https://br.pathofexile.com/guild*",
        "https://ru.pathofexile.com/guild*",
        "https://th.pathofexile.com/guild*",
        "https://de.pathofexile.com/guild*",
        "https://fr.pathofexile.com/guild*",
        "https://es.pathofexile.com/guild*",
        "https://poe.game.daum.net/guild*",
        "https://www.pathofexile.com/account*",
        "https://br.pathofexile.com/account*",
        "https://ru.pathofexile.com/account*",
        "https://th.pathofexile.com/account*",
        "https://de.pathofexile.com/account*",
        "https://fr.pathofexile.com/account*",
        "https://es.pathofexile.com/account*",
        "https://poe.game.daum.net/account*",
        "https://www.pathofexile.com/forum*",
        "https://br.pathofexile.com/forum*",
        "https://ru.pathofexile.com/forum*",
        "https://th.pathofexile.com/forum*",
        "https://de.pathofexile.com/forum*",
        "https://fr.pathofexile.com/forum*",
        "https://es.pathofexile.com/forum*",
        "https://poe.game.daum.net/forum*",
        "https://www.pathofexile.com/private-messages*",
        "https://br.pathofexile.com/private-messages*",
        "https://ru.pathofexile.com/private-messages*",
        "https://th.pathofexile.com/private-messages*",
        "https://de.pathofexile.com/private-messages*",
        "https://fr.pathofexile.com/private-messages*",
        "https://es.pathofexile.com/private-messages*",
        "https://poe.game.daum.net/private-messages*"
      ],
      "css": [
        "style.bundle.css"
      ],
      "js": [
        "otherSites.bundle.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "./background.bundle.js"
    ]
  },
  "options_ui": {
    "page": "./optionsPage.html",
    "open_in_tab": true
  },
  "permissions": [
    "webRequest",
    "tabs",
    "storage",
    "notifications",
    "https://*.pathofexile.com/*",
    "https://poe.game.daum.net/*",
    "https://raw.githubusercontent.com/"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{3df9c1b1-fddd-4c8f-9b79-13d23f33aa48}"
    }
  }
}