Detooned
Adds dynamite claim status for Degen Toonz NFT Project to OpenSea
Detooned là gì?
Detooned là một tiện ích mở rộng Chrome được phát triển bởi abstractdrift.eth, và tính năng chính của nó là "Adds dynamite claim status for Degen Toonz NFT Project to OpenSea".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Detooned
Tải xuống các tệp mở rộng Detooned dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Detooned |
ID | opjegklogaichjhmidoakmjcekcpjnfl |
URL Chính Thức | https://chromewebstore.google.com/detail/detooned/opjegklogaichjhmidoakmjcekcpjnfl |
Mô tả | Adds dynamite claim status for Degen Toonz NFT Project to OpenSea |
Kích Thước Tệp | 390 KB |
Số Lần Cài Đặt | 143 |
Phiên Bản Hiện Tại | 2.0 |
Cập Nhật Lần Cuối | 2022-10-10 |
Ngày Phát Hành | 2022-06-15 |
Nhà Phát Triển | abstractdrift.eth |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/abstractdrift/detooned_chrome_extension |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |