ERC Rarity
High-end NFT data and automation tools
ERC Rarity là gì?
ERC Rarity là một tiện ích mở rộng Chrome được phát triển bởi ERC Rarity, và tính năng chính của nó là "High-end NFT data and automation tools".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng ERC Rarity
Tải xuống các tệp mở rộng ERC Rarity dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | mbhojobjcnpgjkjdafihoeacaflcojji |
URL Chính Thức | https://chrome.google.com/webstore/detail/erc-rarity/mbhojobjcnpgjkjdafihoeacaflcojji |
Mô tả | High-end NFT data and automation tools |
Kích Thước Tệp | 2.79 MB |
Số Lần Cài Đặt | 692 |
Phiên Bản Hiện Tại | 1.0.9 |
Cập Nhật Lần Cuối | 2022-11-19 |
Ngày Phát Hành | 2022-07-24 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | ERC Rarity |
[email protected] | |
Loại Thanh Toán | in_app |
Trang Web Mở Rộng | https://ercrarity.com |
URL Trang Trợ Giúp | https://ercrarity.com |
URL Trang Chính Sách Bảo Mật | https://app.termly.io/document/privacy-policy/836188f6-930e-48cc-9c41-352b48a012db |
Ngôn Ngữ Được Hỗ Trợ | 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:\/\/*\/*" ] } ] } |