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."입니다.
확장 프로그램 스크린샷
Export My NFT Listings 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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\/" ] } |