Detooned

Adds dynamite claim status for Degen Toonz NFT Project to OpenSea

What is Detooned?

Detooned is a Chrome extension developed by abstractdrift.eth, and its main feature is "Adds dynamite claim status for Degen Toonz NFT Project to OpenSea".

Extension Screenshots

screenshot

Download Detooned Extension CRX File

Download Detooned extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Detooned Detooned
ID opjegklogaichjhmidoakmjcekcpjnfl
Official URL https://chromewebstore.google.com/detail/detooned/opjegklogaichjhmidoakmjcekcpjnfl
Description Adds dynamite claim status for Degen Toonz NFT Project to OpenSea
File Size 390 KB
Installation Count 143
Current Version 2.0
Last Updated 2022-10-10
Publish Date 2022-06-15
Developer abstractdrift.eth
Email [email protected]
Payment Type free
Extension Website https://github.com/abstractdrift/detooned_chrome_extension
Supported Languages 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\/*"
            ]
        }
    ]
}