Detooned
Adds dynamite claim status for Degen Toonz NFT Project to OpenSea
Qu'est-ce que Detooned ?
Detooned est une extension Chrome développée par abstractdrift.eth, et sa fonction principale est "Adds dynamite claim status for Degen Toonz NFT Project to OpenSea".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Detooned
Téléchargez les fichiers d'extension Detooned au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Detooned |
ID | opjegklogaichjhmidoakmjcekcpjnfl |
URL Officiel | https://chromewebstore.google.com/detail/detooned/opjegklogaichjhmidoakmjcekcpjnfl |
Description | Adds dynamite claim status for Degen Toonz NFT Project to OpenSea |
Taille du Fichier | 390 KB |
Nombre d'Installations | 143 |
Version Actuelle | 2.0 |
Dernière Mise à Jour | 2022-10-10 |
Date de Publication | 2022-06-15 |
Développeur | abstractdrift.eth |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/abstractdrift/detooned_chrome_extension |
Langues Prises en Charge | 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\/*" ] } ] } |