Claimable WOOL Explorer
On-page viewer of the currently available WOOL amount for pouches.
Was ist Claimable WOOL Explorer?
Claimable WOOL Explorer ist eine Chrome-Erweiterung, die von wooldox entwickelt wurde, und ihr Hauptmerkmal ist "On-page viewer of the currently available WOOL amount for pouches.".
Erweiterungsscreenshots
Claimable WOOL Explorer-Erweiterungs-CRX-Datei herunterladen
Laden Sie Claimable WOOL Explorer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Claimable WOOL, and relevant value-metrics will be displayed on: - The Wool Pouch collection page - The Wool pouch collection activity tab - Your account page - Your account activity tab - Single pouch page Use at your own risk - it is always recommended that you check the amount of claimable WOOL using the smart contract "amountAvailable" function.
Grundlegende Informationen zur Erweiterung
Name | Claimable WOOL Explorer |
ID | dpfhdpolfkfojandgmhdhgkdmkdkmgkc |
Offizielle URL | https://chromewebstore.google.com/detail/claimable-wool-explorer/dpfhdpolfkfojandgmhdhgkdmkdkmgkc |
Beschreibung | On-page viewer of the currently available WOOL amount for pouches. |
Dateigröße | 539 KB |
Installationsanzahl | 53 |
Aktuelle Version | 0.0.2 |
Letztes Update | 2022-08-30 |
Veröffentlichungsdatum | 2022-02-27 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | wooldox |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://woolscan.com |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Claimable WOOL Explorer", "description": "On-page viewer of the currently available WOOL amount for pouches.", "version": "0.0.2", "minimum_chrome_version": "93", "content_scripts": [ { "matches": [ "https:\/\/opensea.io\/*" ], "js": [ "js\/vendor.js", "js\/content_script.js" ], "run_at": "document_end" } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon.png" }, "background": { "service_worker": "js\/background.js" }, "action": { "default_popup": "popup.html" }, "permissions": [ "storage" ] } |