公主连结刷图计算器

公主连结刷图计算器

这个扩展为手机游戏“公主连结: Re Dive”的非官方Wiki网站提供了额外的功能,可以为你计算出游玩计划,以尽量地节省游戏资源(体力值)。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "公主连结刷图计算器",
  "version": "1.0.7",
  "description": "这个扩展为手机游戏“公主连结: Re Dive”的非官方Wiki网站提供了额外的功能,可以为你计算出游玩计划,以尽量地节省游戏资源(体力值)。",
  "permissions": [
    "declarativeContent",
    "storage",
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://pcredivewiki.tw/Armory"
      ],
      "css": [],
      "js": [
        "contents/content.js",
        "contents/solver.js"
      ]
    }
  ],
  "options_page": "options/options.html",
  "page_action": {
    "default_popup": "components/popup.html"
  },
  "icons": {
    "16": "images/peko16.png",
    "32": "images/peko32.png",
    "48": "images/peko48.png",
    "128": "images/peko128.png"
  },
  "manifest_version": 2
}