Mintedz - Extension for NFTs on OpenSea
Boost your OpenSea. Save time and money.
什么是Mintedz - Extension for NFTs on OpenSea?
Mintedz - Extension for NFTs on OpenSea是由https://mintedz.com开发的Chrome扩展程序,该扩展的主要功能是“Boost your OpenSea. Save time and money.”。
扩展截图
下载Mintedz - Extension for NFTs on OpenSea扩展crx文件
下载Mintedz - Extension for NFTs on OpenSea扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This free Chrome Extension adds data directly on NFT collection page to OpenSea:
- NFT collection score
- NFT flipping score
- Twitter followers and Discord members
- Switch prices to US dollar
- Likes / Dislikes
- Views
- 24h volume
- 24h sales
- Creation date
- Reports number
- Ratio by owner
- Royalties
- ... and more to come! 扩展基本信息
| 名称 | |
| ID | gdhfflejhgjfchkhhlcpkcgedecjhajj |
| 官方URL | https://chromewebstore.google.com/detail/mintedz-extension-for-nft/gdhfflejhgjfchkhhlcpkcgedecjhajj |
| 简介 | Boost your OpenSea. Save time and money. |
| 文件大小 | 853 KB |
| 安装次数 | 113 |
| 当前版本 | 1.0.1 |
| 更新时间 | 2022-09-26 |
| 上架时间 | 2022-07-17 |
| 评分 | 5.00/5 共6次评分 |
| 开发者 | https://mintedz.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://mintedz.com |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Mintedz - Extension for NFTs on OpenSea",
"author": "Mintedz",
"description": "Boost your OpenSea. Save time and money.",
"version": "1.0.1",
"manifest_version": 3,
"permissions": [
"tabs",
"cookies"
],
"host_permissions": [
"https:\/\/opensea.io\/"
],
"action": {
"default_popup": "index.html",
"default_title": "Mintedz"
},
"background": {
"service_worker": ".\/static\/js\/background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/opensea.io\/",
"https:\/\/opensea.io\/*"
],
"js": [
".\/static\/js\/master.js"
]
},
{
"matches": [
"https:\/\/opensea.io\/mintedz\/user\/dashboard",
"https:\/\/opensea.io\/*\/mintedz\/user\/dashboard"
],
"js": [
".\/static\/js\/dashboard.js"
]
}
],
"icons": {
"16": ".\/img\/mintedz.png",
"48": ".\/img\/mintedz.png",
"128": ".\/img\/mintedz.png"
}
} | |