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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Reads out your NFT listings with prices on marketplaces and export as CSV to be imported by other marketplaces like tofuNFT."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Export My NFT Listings एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | |
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\/" ] } |