Axie traits

Axie traits

List the axie trait count in the axie view page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Axie traits",
  "description": "List the axie trait count in the axie view page",
  "version": "1.01",
  "author": "Cryptonaut",
  "browser_action": {
    "default_icon": "tab-icon.png",
    "default_title": "Axie United",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://axieinfinity.com/axie/*"
      ],
      "js": [
        "js/traits.js"
      ]
    },
    {
      "matches": [
        "https://axieinfinity.com/my-axies"
      ],
      "js": [
        "js/myAxies.js"
      ]
    },
    {
      "matches": [
        "https://axieinfinity.com/marketplace*"
      ],
      "js": [
        "js/marketplace.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage"
  ]
}