NFT Helper
NFT Helper
What is NFT Helper?
NFT Helper is a Chrome extension developed by https://georgemike.com, and its main feature is "NFT Helper".
Extension Screenshots
Download NFT Helper Extension CRX File
Download NFT Helper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
NFT Helper overlays NFT collection rarity information over marketplace listings. Use it on: - Solanart (solanart.io) - Magic Eden (magiceden.io). - FTX (ftx.us) - OpenSea (opensea.io) Last updated 6/13/2022
Extension Basic Information
Name | |
ID | cebdpnnffiohnkbjicngipfiepffcaoa |
Official URL | https://chromewebstore.google.com/detail/nft-helper/cebdpnnffiohnkbjicngipfiepffcaoa |
Description | NFT Helper |
File Size | 664 KB |
Installation Count | 718 |
Current Version | 1.0.21 |
Last Updated | 2024-01-27 |
Publish Date | 2021-09-20 |
Rating | 5.00/5 Total 5 Ratings |
Developer | https://georgemike.com |
[email protected] | |
Payment Type | free |
Extension Website | https://georgemike.com |
Help Page URL | https://georgemike.com |
Privacy Policy Page URL | https://www.georgemike.com/chrome/privacypolicy |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'", "version": "1.0.21", "options_page": "options.html", "name": "NFT Helper", "description": "NFT Helper", "default_locale": "en", "icons": { "128": "images\/icon.128.png" }, "background": { "scripts": [ "js\/background.js" ] }, "browser_action": { "default_popup": "popup.html" }, "web_accessible_resources": [ "options.html" ], "content_scripts": [ { "matches": [ "https:\/\/*.opensea.io\/*", "https:\/\/*.ftx.us\/*", "https:\/\/*.solanart.io\/*", "https:\/\/*.magiceden.io\/*" ], "js": [ "js\/Config.js", "js\/CollectionChecker.js", "js\/BigLocalStorage.js", "js\/BrowserEnv.js", "js\/SimpleLocalStorage.js", "js\/utils.js", "js\/content.js" ], "css": [ "css\/content.css" ], "all_frames": true } ], "permissions": [ "storage", "unlimitedStorage", "tabs", "*:\/\/*.georgemike.com\/*" ] } |