NFTSniper
Monitor NFT's floor price, list, sell and other activity at any time, and receive reminder messages.
什么是NFTSniper?
NFTSniper是由bestshow202208开发的Chrome扩展程序,该扩展的主要功能是“Monitor NFT's floor price, list, sell and other activity at any time, and receive reminder messages.”。
扩展截图
下载NFTSniper扩展crx文件
下载NFTSniper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The NFT market changes all the time, you need a tool to keep an eye on those important NFTs, NFTSniper will help you:
- Monitor the floor price changes of a collection and remind them by email;
- Monitor the activity of a single blue-chip nft, such as list, price cuts, canceled list, transfer, etc., and send reminder emails.
- The monitoring conditions are user-defined and the rules are flexible. 扩展基本信息
| 名称 | |
| ID | eleppdebedciaglcmfdpmkpjkpoomjpg |
| 官方URL | https://chromewebstore.google.com/detail/nftsniper/eleppdebedciaglcmfdpmkpjkpoomjpg |
| 简介 | Monitor NFT's floor price, list, sell and other activity at any time, and receive reminder messages. |
| 文件大小 | 103 KB |
| 安装次数 | 50 |
| 当前版本 | 1.2.2 |
| 更新时间 | 2022-12-20 |
| 上架时间 | 2022-08-03 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | bestshow202208 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://bestshow.io/#/Home |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "NFTSniper",
"description": "Monitor NFT's floor price, list, sell and other activity at any time, and receive reminder messages.",
"version": "1.2.2",
"icons": {
"16": "static\/bs.png",
"48": "static\/bs.png",
"128": "static\/bs.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"js": [
"myscript.js"
],
"matches": [
"https:\/\/bestshow.io\/*"
],
"run_at": "document_idle"
}
],
"permissions": [
"storage",
"alarms"
],
"action": {
"default_icon": "static\/bs.png",
"default_title": "NFTSniper - Watchlist",
"default_popup": "popup.html"
}
} | |