Nifty Scanner
Scan your NFT assets.
什麼是Nifty Scanner?
Nifty Scanner是由Indorse開發的Chrome擴展程式,該擴展的主要功能是“Scan your NFT assets.”。
擴展截圖
下載Nifty Scanner擴展crx文件
下載Nifty Scanner擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Are you certain you know where your NFT is stored? Do you really own it? When acquiring an NFT and making an informed decision, ask yourself where it is stored. The NFT Scanner browser extension is an MVP developed to help you discover where NFTs on OpenSea are actually stored. Check whether NFT assets are really “decentralized”. More often than not, several projects store NFT media and metadata on centralized servers, controlled by the project team. While you are buying the NFT, the associated media can easily be changed by the team at their will. It’s easy - simply install the extension and visit any NFT on Opensea. You will immediately discover the key details of the NFT without having to leave your page. Features:- On-chain spectrum Decentralization score Nifty Analysis Media and metadata location Note: The NFT Scanner browser extension DOES NOT store or collect your code or data. Also note that this is still a prototype, and some data for non-standard NFT implementations might be missing.
擴展基本資訊
名稱 | Nifty Scanner |
ID | eoepooeledpjaoehhokhalpmlmjbedhe |
官方網址 | https://chromewebstore.google.com/detail/nifty-scanner/eoepooeledpjaoehhokhalpmlmjbedhe |
簡介 | Scan your NFT assets. |
檔案大小 | 929 KB |
安裝次數 | 703 |
目前版本 | 0.0.7 |
更新時間 | 2021-06-28 |
上架時間 | 2021-04-14 |
評分 | 5.00/5 共 5 次評分 |
開發者 | Indorse |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://ecosystem.indorse.io/nft-extension |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Scan your NFT assets.", "version": "0.0.7", "name": "Nifty Scanner", "author": "Indorse", "background": { "page": "background.html" }, "browser_action": { "default_icon": "icon-34.png", "default_popup": "info.html" }, "permissions": [ "https:\/\/api.opensea.io\/api\/v1\/asset\/*", "https:\/\/api.etherscan.io\/*", "storage" ], "icons": { "128": "icon-34.png" }, "content_scripts": [ { "matches": [ "https:\/\/opensea.io\/*" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ] } ], "web_accessible_resources": [ "content.styles.css", "icon-34.png", "visual-1.png", "visual-2.png", "Circle.svg", "Rectangle.svg", "Triangle.svg", "GT-America-Standard-Medium.otf", "GT-America-Standard-Regular.otf", "GT-America-Standard-Bold.otf" ], "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |