Floor Watch
Watch your NFT floor price from badge
什么是Floor Watch?
Floor Watch是由Trivia Labs开发的Chrome扩展程序,该扩展的主要功能是“Watch your NFT floor price from badge”。
扩展截图
下载Floor Watch扩展crx文件
下载Floor Watch扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Watching NFT floor prices that you interested - Import your OpenSea watchlist. - Show the current floor price on the extension badge.
扩展基本信息
名称 | Floor Watch |
ID | fgebmobifmkhbbdgcnaekbofnngjbeme |
官方URL | https://chromewebstore.google.com/detail/floor-watch/fgebmobifmkhbbdgcnaekbofnngjbeme |
简介 | Watch your NFT floor price from badge |
文件大小 | 292 KB |
安装次数 | 425 |
当前版本 | 1.3.1 |
更新时间 | 2022-08-11 |
上架时间 | 2022-04-28 |
评分 | 5.00/5 共7次评分 |
开发者 | Trivia Labs |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.trivia-labs.com/ |
隐私政策页面URL | https://www.trivia-labs.com/privacy |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Floor Watch", "version": "1.3.1", "description": "Watch your NFT floor price from badge", "icons": { "32": "icons\/icon.png", "64": "icons\/[email protected]", "128": "icons\/[email protected]" }, "background": { "service_worker": "background.js" }, "action": { "default_title": "Floor Watch", "default_popup": "popup.html" }, "host_permissions": [ "https:\/\/*.opensea.io\/*", "https:\/\/*.looksrare.org\/*", "https:\/\/*.x2y2.io\/*" ], "permissions": [ "storage", "alarms", "cookies", "contextMenus" ], "content_scripts": [ { "matches": [ "https:\/\/*.opensea.io\/*" ], "run_at": "document_idle", "js": [ "contentScript.js" ], "css": [ "contentScript.css" ] } ] } |