Export My NFT Listings

Export My NFT Listings

Reads out your NFT listings with prices on marketplaces and export as CSV to be imported by other marketplaces like tofuNFT.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Export My NFT Listings",
  "description": "Reads out your NFT listings with prices on marketplaces and export as CSV to be imported by other marketplaces like tofuNFT.",
  "version": "1.2",
  "action": {
    "default_icon": {
      "16": "/images/icon-16.png",
      "32": "/images/icon-32.png",
      "48": "/images/icon-48.png",
      "128": "/images/icon-128.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://nftrade.com/account/listings_made"
      ],
      "js": [
        "js/vendor.js",
        "js/nftrade.js"
      ]
    },
    {
      "matches": [
        "https://scv.finance/nft/portfolio"
      ],
      "js": [
        "js/vendor.js",
        "js/scv.js"
      ]
    },
    {
      "matches": [
        "https://opensea.io/*"
      ],
      "js": [
        "js/vendor.js",
        "js/opensea.js"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "clipboardWrite",
    "tabs",
    "webRequest",
    "background",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "https://nftrade.com/",
    "https://api.nftrade.com/",
    "https://scv.finance/",
    "https://opensea.io/",
    "https://api.opensea.io/"
  ]
}