NFTGo

NFTGo

Discover people's portfolios and NFT collection data without leaving X!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "NFTGo",
  "description": "Discover people's portfolios and NFT collection data without leaving X!",
  "version": "0.3.5",
  "manifest_version": 3,
  "options_page": "options.html",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "assets/img/extension-icon-x32.png"
  },
  "icons": {
    "16": "assets/img/extension-icon-x16.png",
    "32": "assets/img/extension-icon-x32.png",
    "48": "assets/img/extension-icon-x48.png",
    "128": "assets/img/extension-icon-x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://twitter.com/*",
        "*://mobile.twitter.com/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "contentScript.css",
        "/assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://twitter.com/*",
    "*://mobile.twitter.com/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}