Detooned

Adds dynamite claim status for Degen Toonz NFT Project to OpenSea

什么是Detooned?

Detooned是由abstractdrift.eth开发的Chrome扩展程序,该扩展的主要功能是“Adds dynamite claim status for Degen Toonz NFT Project to OpenSea”。

扩展截图

screenshot

下载Detooned扩展crx文件

下载Detooned扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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\/*"
            ]
        }
    ]
}