Orion NFT
Visualize directly on the collection pages their evolution with sales and listings, save collection to monitor them at a glance.
Was ist Orion NFT?
Orion NFT ist eine Chrome-Erweiterung, die von sandgine entwickelt wurde, und ihr Hauptmerkmal ist "Visualize directly on the collection pages their evolution with sales and listings, save collection to monitor them at a glance.".
Erweiterungsscreenshots
Orion NFT-Erweiterungs-CRX-Datei herunterladen
Laden Sie Orion NFT-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
Orion NFT the first extension to increase your flip on Opensea. Visualize directly on the collection pages their evolution with sales and listings, save collection to monitor them at a glance.
Grundlegende Informationen zur Erweiterung
Name | Orion NFT |
ID | chifiemgnomlmdcnfelomkihkeapkedi |
Offizielle URL | https://chromewebstore.google.com/detail/orion-nft/chifiemgnomlmdcnfelomkihkeapkedi |
Beschreibung | Visualize directly on the collection pages their evolution with sales and listings, save collection to monitor them at a glance. |
Dateigröße | 584 KB |
Installationsanzahl | 46 |
Aktuelle Version | 0.0.4 |
Letztes Update | 2022-07-29 |
Veröffentlichungsdatum | 2022-06-17 |
Entwickler | sandgine |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://orionnft.surge.sh |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Orion NFT", "version": "0.0.4", "description": "Visualize directly on the collection pages their evolution with sales and listings, save collection to monitor them at a glance.", "action": { "default_icon": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "default_title": "Orion NFT", "default_popup": "popup\/index.html" }, "icons": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/opensea.io\/collection\/*" ], "run_at": "document_start", "js": [ "content-scripts\/import-main.js" ] }, { "matches": [ "https:\/\/etherscan.io\/address\/*" ], "run_at": "document_start", "js": [ "etherscan-script\/import-main.js" ] } ], "web_accessible_resources": [ { "resources": [ "chunks\/*-*.js", "content-scripts\/main.js", "etherscan-script\/main.js" ], "matches": [ "https:\/\/opensea.io\/*", "https:\/\/etherscan.io\/*" ] } ] } |