NFT Helper
NFT Helper
Cos'è NFT Helper?
NFT Helper è un'estensione di Chrome sviluppata da https://georgemike.com, e la sua funzione principale è "NFT Helper".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione NFT Helper
Scarica i file di estensione NFT Helper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | cebdpnnffiohnkbjicngipfiepffcaoa |
URL Ufficiale | https://chromewebstore.google.com/detail/nft-helper/cebdpnnffiohnkbjicngipfiepffcaoa |
Descrizione | NFT Helper |
Dimensione del File | 664 KB |
Conteggio Installazioni | 718 |
Versione Corrente | 1.0.21 |
Ultimo Aggiornamento | 2024-01-27 |
Data di Pubblicazione | 2021-09-20 |
Valutazione | 5.00/5 Totale 5 Valutazioni |
Sviluppatore | https://georgemike.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://georgemike.com |
URL della Pagina di Aiuto | https://georgemike.com |
URL della Pagina della Politica sulla Privacy | https://www.georgemike.com/chrome/privacypolicy |
Lingue Supportate | 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\/*" ] } |