Examine source code of NFT Unmasked

Inspect and view changes in NFT Unmasked source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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"
      ]
    }
  ]
}