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”。
擴展截圖
下載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 |
ID | opjegklogaichjhmidoakmjcekcpjnfl |
官方網址 | 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\/*" ] } ] } |