Exodia
View Exodia.io analytics within Opensea NFT marketplace.
Co to jest Exodia?
Exodia to rozszerzenie Chrome opracowane przez Exodia, a jego główną funkcją jest „View Exodia.io analytics within Opensea NFT marketplace.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Exodia
Pobierz pliki rozszerzeń Exodia w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Integrates Exodia.io analytics into OpenSea making it easier to reach the Exodia data you need directly from OpenSea. View rarity, value estimates, and quickly jump to Exodia.io using this extension on OpenSea, LooksRare and Twitter.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | pmgipgidcnbnbnmjbmjdpblgipmfipgl |
Oficjalny URL | https://chromewebstore.google.com/detail/exodia/pmgipgidcnbnbnmjbmjdpblgipmfipgl |
Opis | View Exodia.io analytics within Opensea NFT marketplace. |
Rozmiar pliku | 30.81 KB |
Liczba instalacji | 228 |
Aktualna Wersja | 0.0.8 |
Ostatnia Aktualizacja | 2022-04-10 |
Data Publikacji | 2021-12-19 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | Exodia |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://exodia.io |
Adres URL Strony Pomocy | https://exodia.io |
Adres URL Strony Polityki Prywatności | https://exodia.io/privacy-policy |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Exodia", "description": "View Exodia.io analytics within Opensea NFT marketplace.", "version": "0.0.8", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "tabs", "storage", "activeTab" ], "action": { "default_icon": { "16": "\/images\/blue-light.png", "32": "\/images\/blue-light.png", "48": "\/images\/blue-light.png", "128": "\/images\/blue-light.png" } }, "icons": { "16": "\/images\/blue-black.png", "32": "\/images\/blue-black.png", "48": "\/images\/blue-black.png", "128": "\/images\/blue-black.png" }, "content_scripts": [ { "matches": [ "https:\/\/opensea.io\/*" ], "css": [ "main.css" ], "js": [ "common.js", "opensea.js", "injectInfo.js" ] }, { "matches": [ "https:\/\/looksrare.org\/*" ], "css": [ "main.css" ], "js": [ "common.js", "looksrare.js", "injectInfo.js" ] }, { "matches": [ "https:\/\/twitter.com\/*" ], "css": [ "main.css" ], "js": [ "common.js", "twitter.js", "injectTwitterInfo.js" ] } ] } |