Detooned

Adds dynamite claim status for Degen Toonz NFT Project to OpenSea

Was ist Detooned?

Detooned ist eine Chrome-Erweiterung, die von abstractdrift.eth entwickelt wurde, und ihr Hauptmerkmal ist "Adds dynamite claim status for Degen Toonz NFT Project to OpenSea".

Erweiterungsscreenshots

screenshot

Detooned-Erweiterungs-CRX-Datei herunterladen

Laden Sie Detooned-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

                        A simple plugin for chrome based browsers that checks to see if a Degen Toonz has claimed its dynamite or not. The database of claimed toonz is updated every 15 minutes. This will only add the status to OpenSea main search listings, not individual items. 

If you find this useful, any donations -> abstractdrift.eth                    

Grundlegende Informationen zur Erweiterung

Name Detooned Detooned
ID opjegklogaichjhmidoakmjcekcpjnfl
Offizielle URL https://chromewebstore.google.com/detail/detooned/opjegklogaichjhmidoakmjcekcpjnfl
Beschreibung Adds dynamite claim status for Degen Toonz NFT Project to OpenSea
Dateigröße 390 KB
Installationsanzahl 143
Aktuelle Version 2.0
Letztes Update 2022-10-10
Veröffentlichungsdatum 2022-06-15
Entwickler abstractdrift.eth
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/abstractdrift/detooned_chrome_extension
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Detooned",
    "description": "Adds dynamite claim status for Degen Toonz NFT Project to OpenSea",
    "version": "2.0",
    "manifest_version": 3,
    "action": {
        "icons": {
            "128": "icon.png"
        },
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/opensea.io\/collection\/degentoonz-collection*",
                "https:\/\/opensea.io\/assets\/ethereum\/*"
            ],
            "css": [
                "static\/css\/main.css"
            ],
            "js": [
                "static\/js\/worker.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "static\/js\/background.js"
    },
    "host_permissions": [
        "https:\/\/detooned-s3.s3.us-west-1.amazonaws.com\/detooned.json"
    ],
    "icons": {
        "128": "icon.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "static\/images\/*"
            ],
            "matches": [
                "https:\/\/opensea.io\/*"
            ]
        }
    ]
}