RarityRanks
An extension that shows the rarity rank and rarity score under NFT tokens The extension displays a small window above some images…
RarityRanks क्या है?
RarityRanks RarityRanks द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension that shows the rarity rank and rarity score under NFT tokens The extension displays a small window above some images…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में RarityRanks एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
An extension that shows the rarity rank and rarity score under NFT tokens The extension displays a small window above some images of NFT tokens. On the Opensea.io and market.x.immutable.com/ websites. This window contains information about the rarity rank and rarity score of this token. RarityRanks extension takes information from the API- https://rarityranks.io/ In the extension pop-up, you can turn off the display of pop-ups over NFT tokens. You can also switch the extension windows to a dark theme. At the moment, the extension only shows a popup over some of the collections. For example "The Doge Pound". You can check how extension works on this page - https://opensea.io/collection/the-doge-pound or https://market.x.immutable.com/assets?collection=0x343fd244ab5a1d1129a6edf21ba37c64aa725ff0 Latest updates RarityRanks extension: Release 1.0.3 - 22/12/2021 + New design improvements. Added a static element displaying the rarity rank. + New mode for collection pages added. 5% of the most rare NFTs are highlighted in red. And in green for 20% of the most rare. The remaining 80% are displayed in gray. + Made the extension more reliable, now the processes of adding elements and filling them with data work separately. This fixed a lot of bugs with variable site loading, especially for https://market.x.immutable.com/. + Fixed bug for limit of 4096 characters for styles has been fixed. Because of it, there was a lot of distortion in the display. + Also added Open Sans font. Many small bugs have been fixed and many small improvements have been made. Release 1.0.2 - 21/11/2021 + Added a static icon and a static Rank text next to the name of the NFT element. For Opensea.io and market.x.immutable.com . + Added "Last Updates" page. + Fixed influence of extension styles on OpenSea styles. + Fixed a bug for some NFT elements that contained a parameter "/matic/" in their URL. + Bug with displaying in the directory "/assets". A lot bug fixes and small improvements. Release 1.0.1 - 07/11/2021 + Added informational popups with rarity on market.x.immutable.com + Rarity popups have also been added to the activity tab for OpenSea.io Some improvements and bug fixes. Release 1.0.0 - 21/10/2021 + Initial release
एक्सटेंशन की मूल जानकारी
नाम | RarityRanks |
ID | ojiioomnfggllljmdbcnmnieffmonohl |
आधिकारिक URL | https://chromewebstore.google.com/detail/rarityranks/ojiioomnfggllljmdbcnmnieffmonohl |
विवरण | An extension that shows the rarity rank and rarity score under NFT tokens The extension displays a small window above some images… |
फ़ाइल का आकार | 242 KB |
स्थापना संख्या | 10,000 |
वर्तमान संस्करण | 1.0.3 |
अंतिम अपडेट | 2021-12-23 |
प्रकाशन तिथि | 2021-11-02 |
रेटिंग | 4.38/5 कुल 13 रेटिंग्स |
डेवलपर | RarityRanks |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://rarityranks.io/ |
सहायता पृष्ठ URL | https://rarityranks.io/about |
गोपनीयता नीति पृष्ठ URL | https://rarityranks.io/privacy |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "RarityRanks", "version": "1.0.3", "icons": { "16": "assets\/icons\/favicon-16.png", "32": "assets\/icons\/favicon-32.png", "48": "assets\/icons\/favicon-48.png", "128": "assets\/icons\/favicon-128.png" }, "description": "", "homepage_url": "https:\/\/rarityranks.io\/", "short_name": "RarityRanks", "permissions": [ "tabs", "storage", "http:\/\/opensea.io\/*", "https:\/\/opensea.io\/*", "http:\/\/market.x.immutable.com\/*", "https:\/\/market.x.immutable.com\/*" ], "content_security_policy": "script-src 'self'; object-src 'self'", "author": "dmitry_pogorelov", "minimum_chrome_version": "49", "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "assets\/icons\/favicon-16.png", "32": "assets\/icons\/favicon-32.png", "48": "assets\/icons\/favicon-48.png", "128": "assets\/icons\/favicon-128.png" }, "default_title": "RarityRanks", "chrome_style": false }, "background": { "scripts": [ "js\/background.bundle.js" ], "persistent": false }, "web_accessible_resources": [ "page-popup.html", "updated.html", "assets\/icons\/logo-lines.svg", "assets\/icons\/logo-inside.svg", "assets\/fonts\/OpenSans400.woff2", "assets\/fonts\/OpenSans600.woff2" ], "content_scripts": [ { "matches": [ "http:\/\/opensea.io\/*", "https:\/\/opensea.io\/*", "http:\/\/market.x.immutable.com\/*", "https:\/\/market.x.immutable.com\/*" ], "js": [ "js\/contentScript.bundle.js" ] } ] } |