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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον itjesse54, και η κύρια λειτουργία του είναι "Reads out your NFT listings with prices on marketplaces and export as CSV to be imported by other marketplaces like tofuNFT.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Export My NFT Listings

Λήψη αρχείων επέκτασης 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
Επίσημο URL 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\/"
    ]
}