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文件
下載ERC Rarity擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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:\/\/*\/*" ] } ] } |