Orion NFT
Visualize directly on the collection pages their evolution with sales and listings, save collection to monitor them at a glance.
Orion NFT란 무엇입니까?
Orion NFT은(는) sandgine에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Visualize directly on the collection pages their evolution with sales and listings, save collection to monitor them at a glance."입니다.
확장 프로그램 스크린샷
Orion NFT 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Orion NFT the first extension to increase your flip on Opensea. Visualize directly on the collection pages their evolution with sales and listings, save collection to monitor them at a glance.
확장 프로그램 기본 정보
이름 | Orion NFT |
ID | chifiemgnomlmdcnfelomkihkeapkedi |
공식 URL | https://chromewebstore.google.com/detail/orion-nft/chifiemgnomlmdcnfelomkihkeapkedi |
설명 | Visualize directly on the collection pages their evolution with sales and listings, save collection to monitor them at a glance. |
파일 크기 | 584 KB |
설치 횟수 | 46 |
현재 버전 | 0.0.4 |
최근 업데이트 | 2022-07-29 |
출시 날짜 | 2022-06-17 |
개발자 | sandgine |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://orionnft.surge.sh |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Orion NFT", "version": "0.0.4", "description": "Visualize directly on the collection pages their evolution with sales and listings, save collection to monitor them at a glance.", "action": { "default_icon": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "default_title": "Orion NFT", "default_popup": "popup\/index.html" }, "icons": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/opensea.io\/collection\/*" ], "run_at": "document_start", "js": [ "content-scripts\/import-main.js" ] }, { "matches": [ "https:\/\/etherscan.io\/address\/*" ], "run_at": "document_start", "js": [ "etherscan-script\/import-main.js" ] } ], "web_accessible_resources": [ { "resources": [ "chunks\/*-*.js", "content-scripts\/main.js", "etherscan-script\/main.js" ], "matches": [ "https:\/\/opensea.io\/*", "https:\/\/etherscan.io\/*" ] } ] } |