Claimable WOOL Explorer
On-page viewer of the currently available WOOL amount for pouches.
什么是Claimable WOOL Explorer?
Claimable WOOL Explorer是由wooldox开发的Chrome扩展程序,该扩展的主要功能是“On-page viewer of the currently available WOOL amount for pouches.”。
扩展截图
下载Claimable WOOL Explorer扩展crx文件
下载Claimable WOOL Explorer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Claimable WOOL Explorer |
ID | dpfhdpolfkfojandgmhdhgkdmkdkmgkc |
官方URL | https://chromewebstore.google.com/detail/claimable-wool-explorer/dpfhdpolfkfojandgmhdhgkdmkdkmgkc |
简介 | On-page viewer of the currently available WOOL amount for pouches. |
文件大小 | 539 KB |
安装次数 | 53 |
当前版本 | 0.0.2 |
更新时间 | 2022-08-30 |
上架时间 | 2022-02-27 |
评分 | 5.00/5 共1次评分 |
开发者 | wooldox |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://woolscan.com |
支持的语言 | 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" ] } |