Orion NFT

Visualize directly on the collection pages their evolution with sales and listings, save collection to monitor them at a glance.

Vad är Orion NFT?

Orion NFT är en Chrome-tillägg utvecklad av sandgine, och dess huvudfunktion är "Visualize directly on the collection pages their evolution with sales and listings, save collection to monitor them at a glance.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Orion NFT-förlängningens CRX-fil

Ladda ner Orion NFT-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Orion NFT Orion NFT
ID chifiemgnomlmdcnfelomkihkeapkedi
Officiell webbadress https://chromewebstore.google.com/detail/orion-nft/chifiemgnomlmdcnfelomkihkeapkedi
Beskrivning Visualize directly on the collection pages their evolution with sales and listings, save collection to monitor them at a glance.
Filstorlek 584 KB
Antal Installationer 46
Aktuell Version 0.0.4
Senast Uppdaterad 2022-07-29
Publiceringsdatum 2022-06-17
Utvecklare sandgine
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://orionnft.surge.sh
Stödda Språk 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\/*"
            ]
        }
    ]
}