Claimable WOOL Explorer
On-page viewer of the currently available WOOL amount for pouches.
Apa itu Claimable WOOL Explorer?
Claimable WOOL Explorer adalah ekstensi Chrome yang dikembangkan oleh wooldox, dan fitur utamanya adalah "On-page viewer of the currently available WOOL amount for pouches.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Claimable WOOL Explorer
Unduh file ekstensi Claimable WOOL Explorer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Claimable WOOL Explorer |
ID | dpfhdpolfkfojandgmhdhgkdmkdkmgkc |
URL Resmi | https://chromewebstore.google.com/detail/claimable-wool-explorer/dpfhdpolfkfojandgmhdhgkdmkdkmgkc |
Deskripsi | On-page viewer of the currently available WOOL amount for pouches. |
Ukuran File | 539 KB |
Jumlah Instalasi | 53 |
Versi Saat Ini | 0.0.2 |
Terakhir Diperbarui | 2022-08-30 |
Tanggal Publikasi | 2022-02-27 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | wooldox |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://woolscan.com |
Bahasa yang Didukung | 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" ] } |