Floor Watch

Watch your NFT floor price from badge

Floor Watchとは何ですか?

Floor WatchはTrivia Labsによって開発されたChromeの拡張機能で、その主な機能は「Watch your NFT floor price from badge」です。

拡張機能のスクリーンショット

screenshot
screenshot

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 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
Eメール [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"
            ]
        }
    ]
}