Mintedz - Extension for NFTs on OpenSea
Boost your OpenSea. Save time and money.
Was ist Mintedz - Extension for NFTs on OpenSea?
Mintedz - Extension for NFTs on OpenSea ist eine Chrome-Erweiterung, die von https://mintedz.com entwickelt wurde, und ihr Hauptmerkmal ist "Boost your OpenSea. Save time and money.".
Erweiterungsscreenshots
Mintedz - Extension for NFTs on OpenSea-Erweiterungs-CRX-Datei herunterladen
Laden Sie Mintedz - Extension for NFTs on OpenSea-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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! Grundlegende Informationen zur Erweiterung
| Name | |
| ID | gdhfflejhgjfchkhhlcpkcgedecjhajj |
| Offizielle URL | https://chromewebstore.google.com/detail/mintedz-extension-for-nft/gdhfflejhgjfchkhhlcpkcgedecjhajj |
| Beschreibung | Boost your OpenSea. Save time and money. |
| Dateigröße | 853 KB |
| Installationsanzahl | 113 |
| Aktuelle Version | 1.0.1 |
| Letztes Update | 2022-09-26 |
| Veröffentlichungsdatum | 2022-07-17 |
| Bewertung | 5.00/5 Insgesamt 6 Bewertungen |
| Entwickler | https://mintedz.com |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://mintedz.com |
| Unterstützte Sprachen | 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"
}
} | |