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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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\/*" ] } ] } |