SeaFloor

A browser extension by SeaFloor that lets you check the latest stats for your NFTs.

什么是SeaFloor?

SeaFloor是由SeaFloor开发的Chrome扩展程序,该扩展的主要功能是“A browser extension by SeaFloor that lets you check the latest stats for your NFTs.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载SeaFloor扩展crx文件

下载SeaFloor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Latest SeaFloor extension that will allow users to check latest status for NFTs at OpenSea. It will show the rarity score and rank and its trading volume, and so much more.                    

扩展基本信息

名称 SeaFloor SeaFloor
ID hnfikimmejnoigenobgcjmcampcmcgpl
官方URL https://chromewebstore.google.com/detail/seafloor/hnfikimmejnoigenobgcjmcampcmcgpl
简介 A browser extension by SeaFloor that lets you check the latest stats for your NFTs.
文件大小 549 KB
安装次数 207
当前版本 0.7.3
更新时间 2021-09-25
上架时间 2021-09-06
开发者 SeaFloor
电子邮箱 [email protected]
付费类型 free
扩展官网 https://seafloor.io
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A browser extension by SeaFloor that lets you check the latest stats for your NFTs.",
    "version": "0.7.3",
    "manifest_version": 3,
    "name": "SeaFloor",
    "options_page": "options.html",
    "author": "SeaFloor",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-128.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.opensea.io\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "host_permissions": [
        "http:\/\/localhost:3009\/*",
        "https:\/\/www.seafloor.gq\/*"
    ],
    "content_security_policy": {
        "isolated_world": "script-src 'self'"
    },
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png",
                "puff.svg",
                "arrow-down.svg",
                "arrow-up.svg",
                "arrow-change-up.svg",
                "sort.svg",
                "ether.svg",
                "sample-banner.jpg"
            ],
            "matches": [
                ""
            ],
            "use_dynamic_url": true
        }
    ]
}