Detooned

Adds dynamite claim status for Degen Toonz NFT Project to OpenSea

ما هو Detooned؟

Detooned هو إضافة Chrome تم تطويرها بواسطة abstractdrift.eth، والميزة الرئيسية لها هي "Adds dynamite claim status for Degen Toonz NFT Project to OpenSea".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Detooned

قم بتنزيل ملفات الامتداد Detooned بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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\/*"
            ]
        }
    ]
}