RarityRanks

RarityRanks

An extension that shows the rarity rank and rarity score under NFT tokens The extension displays a small window above some images…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "RarityRanks",
  "version": "1.0.3",
  "icons": {
    "16": "assets/icons/favicon-16.png",
    "32": "assets/icons/favicon-32.png",
    "48": "assets/icons/favicon-48.png",
    "128": "assets/icons/favicon-128.png"
  },
  "description": "",
  "homepage_url": "https://rarityranks.io/",
  "short_name": "RarityRanks",
  "permissions": [
    "tabs",
    "storage",
    "http://opensea.io/*",
    "https://opensea.io/*",
    "http://market.x.immutable.com/*",
    "https://market.x.immutable.com/*"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "author": "dmitry_pogorelov",
  "minimum_chrome_version": "49",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/icons/favicon-16.png",
      "32": "assets/icons/favicon-32.png",
      "48": "assets/icons/favicon-48.png",
      "128": "assets/icons/favicon-128.png"
    },
    "default_title": "RarityRanks",
    "chrome_style": false
  },
  "background": {
    "scripts": [
      "js/background.bundle.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "page-popup.html",
    "updated.html",
    "assets/icons/logo-lines.svg",
    "assets/icons/logo-inside.svg",
    "assets/fonts/OpenSans400.woff2",
    "assets/fonts/OpenSans600.woff2"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://opensea.io/*",
        "https://opensea.io/*",
        "http://market.x.immutable.com/*",
        "https://market.x.immutable.com/*"
      ],
      "js": [
        "js/contentScript.bundle.js"
      ]
    }
  ]
}