ERC Rarity
High-end NFT data and automation tools
ERC Rarity란 무엇입니까?
ERC Rarity은(는) ERC Rarity에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "High-end NFT data and automation tools"입니다.
확장 프로그램 스크린샷
ERC Rarity 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Giving you the best information and automation for buying and selling NFT's Limited Plan (Free): - Integrates natively into OpenSea (more platforms in the future) - Quickly view floor price of a collection while browsing items - Access to advanced ranking information of items within thousands of collections (after 7 days) Premium Plan: - Everything in Limited Plan - Instant access to ranking info - Easy-to-use rarity scoring - Quick buy - Request any collection - Trait scoring breakdown
확장 프로그램 기본 정보
이름 | |
ID | mbhojobjcnpgjkjdafihoeacaflcojji |
공식 URL | https://chrome.google.com/webstore/detail/erc-rarity/mbhojobjcnpgjkjdafihoeacaflcojji |
설명 | High-end NFT data and automation tools |
파일 크기 | 2.79 MB |
설치 횟수 | 692 |
현재 버전 | 1.0.9 |
최근 업데이트 | 2022-11-19 |
출시 날짜 | 2022-07-24 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | ERC Rarity |
이메일 | [email protected] |
결제 유형 | in_app |
확장 프로그램 웹 사이트 | https://ercrarity.com |
도움말 페이지 URL | https://ercrarity.com |
개인정보 보호 정책 페이지 URL | https://app.termly.io/document/privacy-policy/836188f6-930e-48cc-9c41-352b48a012db |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "High-end NFT data and automation tools", "version": "1.0.9", "manifest_version": 3, "name": "ERC Rarity", "background": { "service_worker": "background.bundle.js" }, "action": { "default_popup": "popup.html", "default_icon": "icon-34.png" }, "icons": { "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/opensea.io\/*" ], "js": [ "openseaContentScript.bundle.js" ], "css": [ "content.styles.css" ], "run_at": "document_end" }, { "matches": [ "https:\/\/*\/*" ], "js": [ "generalContentScript.bundle.js" ], "run_at": "document_end" } ], "host_permissions": [ "https:\/\/*.opensea.io\/*" ], "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "content.styles.css", "icon-128.png", "icon-34.png", "openseaPageContextInject.bundle.js" ], "matches": [ "https:\/\/*.opensea.io\/*" ] }, { "resources": [ "generalPageContextInject.bundle.js" ], "matches": [ "https:\/\/*\/*" ] } ] } |