Floor Watch
Watch your NFT floor price from badge
Wat is Floor Watch?
Floor Watch is een Chrome-extensie ontwikkeld door Trivia Labs, en de belangrijkste functie is "Watch your NFT floor price from badge".
Extensie Screenshots
Download het CRX-bestand van de extensie Floor Watch
Download Floor Watch-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Watching NFT floor prices that you interested - Import your OpenSea watchlist. - Show the current floor price on the extension badge.
Basisinformatie over de Extensie
Naam | Floor Watch |
ID | fgebmobifmkhbbdgcnaekbofnngjbeme |
Officiële URL | https://chromewebstore.google.com/detail/floor-watch/fgebmobifmkhbbdgcnaekbofnngjbeme |
Beschrijving | Watch your NFT floor price from badge |
Bestandsgrootte | 292 KB |
Aantal Installaties | 425 |
Huidige Versie | 1.3.1 |
Laatst Bijgewerkt | 2022-08-11 |
Publicatiedatum | 2022-04-28 |
Beoordeling | 5.00/5 Totaal 7 Beoordelingen |
Ontwikkelaar | Trivia Labs |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://www.trivia-labs.com/ |
URL van de Privacybeleid Pagina | https://www.trivia-labs.com/privacy |
Ondersteunde Talen | 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" ] } ] } |