NFT Helper
NFT Helper
什么是NFT Helper?
NFT Helper是由https://georgemike.com开发的Chrome扩展程序,该扩展的主要功能是“NFT Helper”。
扩展截图
下载NFT Helper扩展crx文件
下载NFT Helper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| ID | cebdpnnffiohnkbjicngipfiepffcaoa |
| 官方URL | https://chromewebstore.google.com/detail/nft-helper/cebdpnnffiohnkbjicngipfiepffcaoa |
| 简介 | NFT Helper |
| 文件大小 | 664 KB |
| 安装次数 | 718 |
| 当前版本 | 1.0.21 |
| 更新时间 | 2024-01-27 |
| 上架时间 | 2021-09-20 |
| 评分 | 5.00/5 共5次评分 |
| 开发者 | https://georgemike.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://georgemike.com |
| 帮助页面URL | https://georgemike.com |
| 隐私政策页面URL | https://www.georgemike.com/chrome/privacypolicy |
| 支持的语言 | 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\/*"
]
} | |