Freak's Axie Extension

Freak's Axie Extension

An extension to help play Axie Infinity.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Freak's Axie Extension",
  "version": "1.7.1",
  "description": "An extension to help play Axie Infinity.",
  "permissions": [
    "activeTab",
    "declarativeContent",
    "storage"
  ],
  "host_permissions": [
    "https://marketplace.axieinfinity.com/*",
    "https://*.axieinfinity.com/*"
  ],
  "icons": {
    "16": "images/rep_icon16.png",
    "32": "images/rep_icon32.png",
    "48": "images/rep_icon48.png",
    "128": "images/rep_icon128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "Freak's Axie Extension",
    "default_icon": {
      "16": "images/rep_icon16.png",
      "32": "images/rep_icon32.png",
      "48": "images/rep_icon48.png",
      "128": "images/rep_icon128.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://marketplace.axieinfinity.com/*"
      ],
      "js": [
        "options.js",
        "traitmapping.js",
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "body-parts.json"
      ],
      "matches": [
        "https://marketplace.axieinfinity.com/*"
      ]
    }
  ],
  "manifest_version": 3
}