Floor Watch

Watch your NFT floor price from badge

Floor Watchคืออะไร?

Floor Watch เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Trivia Labs และคุณลักษณะหลักของมันคือ "Watch your NFT floor price from badge"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Floor Watch

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
            ]
        }
    ]
}