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"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Detooned
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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\/*" ] } ] } |