Detooned

Adds dynamite claim status for Degen Toonz NFT Project to OpenSea

Detooned क्या है?

Detooned abstractdrift.eth द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds dynamite claim status for Degen Toonz NFT Project to OpenSea"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Detooned एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Detooned Detooned
ID opjegklogaichjhmidoakmjcekcpjnfl
आधिकारिक URL https://chromewebstore.google.com/detail/detooned/opjegklogaichjhmidoakmjcekcpjnfl
विवरण Adds dynamite claim status for Degen Toonz NFT Project to OpenSea
फ़ाइल का आकार 390 KB
स्थापना संख्या 143
वर्तमान संस्करण 2.0
अंतिम अपडेट 2022-10-10
प्रकाशन तिथि 2022-06-15
डेवलपर abstractdrift.eth
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/abstractdrift/detooned_chrome_extension
समर्थित भाषाएँ 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\/*"
            ]
        }
    ]
}