Floor Watch
Watch your NFT floor price from badge
What is Floor Watch?
Floor Watch is a Chrome extension developed by Trivia Labs, and its main feature is "Watch your NFT floor price from badge".
Extension Screenshots
Download Floor Watch Extension CRX File
Download Floor Watch extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Watching NFT floor prices that you interested - Import your OpenSea watchlist. - Show the current floor price on the extension badge.
Extension Basic Information
Name | Floor Watch |
ID | fgebmobifmkhbbdgcnaekbofnngjbeme |
Official URL | https://chromewebstore.google.com/detail/floor-watch/fgebmobifmkhbbdgcnaekbofnngjbeme |
Description | Watch your NFT floor price from badge |
File Size | 292 KB |
Installation Count | 425 |
Current Version | 1.3.1 |
Last Updated | 2022-08-11 |
Publish Date | 2022-04-28 |
Rating | 5.00/5 Total 7 Ratings |
Developer | Trivia Labs |
[email protected] | |
Payment Type | free |
Extension Website | https://www.trivia-labs.com/ |
Privacy Policy Page URL | https://www.trivia-labs.com/privacy |
Supported Languages | 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" ] } ] } |