NFT Helper
NFT Helper
Apa itu NFT Helper?
NFT Helper adalah ekstensi Chrome yang dikembangkan oleh https://georgemike.com, dan fitur utamanya adalah "NFT Helper".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi NFT Helper
Unduh file ekstensi NFT Helper dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | |
ID | cebdpnnffiohnkbjicngipfiepffcaoa |
URL Resmi | https://chromewebstore.google.com/detail/nft-helper/cebdpnnffiohnkbjicngipfiepffcaoa |
Deskripsi | NFT Helper |
Ukuran File | 664 KB |
Jumlah Instalasi | 718 |
Versi Saat Ini | 1.0.21 |
Terakhir Diperbarui | 2024-01-27 |
Tanggal Publikasi | 2021-09-20 |
Penilaian | 5.00/5 Total 5 Penilaian |
Pengembang | https://georgemike.com |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://georgemike.com |
URL Halaman Bantuan | https://georgemike.com |
URL Halaman Kebijakan Privasi | https://www.georgemike.com/chrome/privacypolicy |
Bahasa yang Didukung | 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\/*" ] } |