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