NFT Helper

NFT Helper

NFT Helper

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "version": "1.0.21",
  "options_page": "options.html",
  "name": "NFT Helper",
  "description": "NFT Helper",
  "default_locale": "en",
  "icons": {
    "128": "images/icon.128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "options.html"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.opensea.io/*",
        "https://*.ftx.us/*",
        "https://*.solanart.io/*",
        "https://*.magiceden.io/*"
      ],
      "js": [
        "js/Config.js",
        "js/CollectionChecker.js",
        "js/BigLocalStorage.js",
        "js/BrowserEnv.js",
        "js/SimpleLocalStorage.js",
        "js/utils.js",
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs",
    "*://*.georgemike.com/*"
  ]
}