Axie Explorer

Axie Explorer

The extension allows you to see extended information about the Axies (adults) on their marketplace.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Axie Explorer",
  "version": "1.1.8",
  "description": "Show more information of Axies attributes in the marketplace",
  "icons": {
    "48": "images/icon48.png",
    "96": "images/icon96.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "https://marketplace.axieinfinity.com/*",
    "https://*.axieinfinity.com/*"
  ],
  "browser_action": {
    "default_icon": "images/icon48.png",
    "default_title": "Axie Explorer",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://marketplace.axieinfinity.com/*"
      ],
      "js": [
        "options.js",
        "traitmapping.js",
        "contentScript.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "options.js",
      "lib/web3.min.js",
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "body-parts.json"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{f99001b8-444e-4ea8-8235-a59313ed4802}"
    }
  }
}