POE网页市集简中汉化

POE网页市集简中汉化

POE国际服网页市集简中by坚强的程序员

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "POE网页市集简中汉化",
  "description": "POE国际服网页市集简中by坚强的程序员",
  "version": "2023.12.17",
  "icons": {
    "48": "images/icon.png",
    "128": "images/128x128.png"
  },
  "browser_action": {
    "default_title": "POE Trade zh修正",
    "default_icon": "images/icon.png",
    "default_popup": "options.html"
  },
  "permissions": [
    "*://www.pathofexile.com/trade/*",
    "*://web.poe.garena.tw/trade/*",
    "*://poe.game.qq.com/api/trade/*",
    "*://poe.qq.com/*",
    "*://gitee.com/a643226422/poe/raw/master/*",
    "unlimitedStorage",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.pathofexile.com/trade/*"
      ],
      "js": [
        "js/app.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://www.pathofexile.com/trade/*"
      ],
      "js": [
        "js/result.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  }
}