NFT Unmasked

NFT Unmasked

NFT Unmasked allows you to snipe undervalued NFTs by checking rarity, volume, price action, and more while you browse OpenSea.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "NFT Unmasked",
  "version": "1.0.0",
  "manifest_version": 3,
  "description": "NFT Unmasked allows you to snipe undervalued NFTs by checking rarity, volume, price action, and more while you browse OpenSea.",
  "homepage_url": "http://www.nftunmasked.io",
  "icons": {
    "192": "icons/logo192.png",
    "512": "icons/logo512.png"
  },
  "default_locale": "en",
  "background": {
    "service_worker": "src/bg/background.js"
  },
  "permissions": [
    "https://opensea.io/*",
    "https://www.opensea.io/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://opensea.io/*",
        "https://www.opensea.io/*"
      ],
      "js": [
        "src/inject/inject.js"
      ],
      "css": [
        "src/css/loader.css",
        "src/css/styles.css"
      ]
    }
  ]
}