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.

什麼是Export My NFT Listings?

Export My NFT Listings是由itjesse54開發的Chrome擴展程式,該擴展的主要功能是“Reads out your NFT listings with prices on marketplaces and export as CSV to be imported by other marketplaces like tofuNFT.”。

擴展截圖

screenshot

下載Export My NFT Listings擴展crx文件

下載Export My NFT Listings擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        If you want to move a bunch of NFTs listed on one marketplace to another, this extension might could help you.

【How to Use】
1. Open the marketplace & visit the page that shows all your listings
2. Click the extension icon and hit the Export to Clipboard button
3. Paste the text to the import page of marketplace that supports import from CSV.

Currently support: NFTrade, SCV, OpenSea                    

擴展基本資訊

名稱 Export My NFT Listings Export My NFT Listings
ID lpmogjockhdkcepliphdfbhpcdacbhki
官方網址 https://chromewebstore.google.com/detail/export-my-nft-listings/lpmogjockhdkcepliphdfbhpcdacbhki
簡介 Reads out your NFT listings with prices on marketplaces and export as CSV to be imported by other marketplaces like tofuNFT.
檔案大小 156 KB
安裝次數 3,769
目前版本 1.2
更新時間 2021-12-28
上架時間 2021-12-02
評分 2.50/5 共 2 次評分
開發者 itjesse54
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://telegra.ph/Privacy-policy-12-02-24
支援的語言 en
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\/"
    ]
}