Orion NFT
Visualize directly on the collection pages their evolution with sales and listings, save collection to monitor them at a glance.
Τι είναι το Orion NFT;
Το Orion NFT είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον sandgine, και η κύρια λειτουργία του είναι "Visualize directly on the collection pages their evolution with sales and listings, save collection to monitor them at a glance.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Orion NFT
Λήψη αρχείων επέκτασης Orion NFT σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Orion NFT |
ID | chifiemgnomlmdcnfelomkihkeapkedi |
Επίσημο URL | https://chromewebstore.google.com/detail/orion-nft/chifiemgnomlmdcnfelomkihkeapkedi |
Περιγραφή | Visualize directly on the collection pages their evolution with sales and listings, save collection to monitor them at a glance. |
Μέγεθος Αρχείου | 584 KB |
Αριθμός Εγκαταστάσεων | 46 |
Τρέχουσα Έκδοση | 0.0.4 |
Τελευταία Ενημέρωση | 2022-07-29 |
Ημερομηνία Δημοσίευσης | 2022-06-17 |
Προγραμματιστής | sandgine |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://orionnft.surge.sh |
Υποστηριζόμενες Γλώσσες | 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\/*" ] } ] } |