Orion NFT
Visualize directly on the collection pages their evolution with sales and listings, save collection to monitor them at a glance.
什么是Orion NFT?
Orion NFT是由sandgine开发的Chrome扩展程序,该扩展的主要功能是“Visualize directly on the collection pages their evolution with sales and listings, save collection to monitor them at a glance.”。
扩展截图
下载Orion NFT扩展crx文件
下载Orion NFT扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Orion NFT the first extension to increase your flip on Opensea.
Visualize directly on the collection pages their evolution with sales and listings, save collection to monitor them at a glance. 扩展基本信息
| 名称 | |
| ID | chifiemgnomlmdcnfelomkihkeapkedi |
| 官方URL | https://chromewebstore.google.com/detail/orion-nft/chifiemgnomlmdcnfelomkihkeapkedi |
| 简介 | Visualize directly on the collection pages their evolution with sales and listings, save collection to monitor them at a glance. |
| 文件大小 | 584 KB |
| 安装次数 | 46 |
| 当前版本 | 0.0.4 |
| 更新时间 | 2022-07-29 |
| 上架时间 | 2022-06-17 |
| 开发者 | sandgine |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://orionnft.surge.sh |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Orion NFT",
"version": "0.0.4",
"description": "Visualize directly on the collection pages their evolution with sales and listings, save collection to monitor them at a glance.",
"action": {
"default_icon": {
"16": "assets\/icon16.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"default_title": "Orion NFT",
"default_popup": "popup\/index.html"
},
"icons": {
"16": "assets\/icon16.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https:\/\/opensea.io\/collection\/*"
],
"run_at": "document_start",
"js": [
"content-scripts\/import-main.js"
]
},
{
"matches": [
"https:\/\/etherscan.io\/address\/*"
],
"run_at": "document_start",
"js": [
"etherscan-script\/import-main.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"chunks\/*-*.js",
"content-scripts\/main.js",
"etherscan-script\/main.js"
],
"matches": [
"https:\/\/opensea.io\/*",
"https:\/\/etherscan.io\/*"
]
}
]
} | |