POE Trade zh

POE Trade zh

讓國際版 POE Trade 網頁支援中文裝備、詞綴搜尋

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 zh",
  "description": "讓國際版 POE Trade 網頁支援中文裝備、詞綴搜尋",
  "version": "3.23.1",
  "icons": {
    "48": "images/icon.png",
    "128": "images/128x128.png"
  },
  "action": {
    "default_title": "POE Trade zh",
    "default_icon": "images/icon.png",
    "default_popup": "options.html"
  },
  "host_permissions": [
    "https://www.pathofexile.com/trade/*",
    "https://pathofexile.tw/trade/*",
    "https://poe.game.qq.com/api/trade/*"
  ],
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.pathofexile.com/trade/*"
      ],
      "run_at": "document_start",
      "js": [
        "js/app.js"
      ]
    },
    {
      "matches": [
        "https://www.pathofexile.com/trade/*"
      ],
      "run_at": "document_end",
      "js": [
        "js/result.js"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "js/translate.zh_TW.js"
      ],
      "matches": [
        "https://www.pathofexile.com/*"
      ]
    }
  ]
}