Exodia
View Exodia.io analytics within Opensea NFT marketplace.
Hvad er Exodia?
Exodia er en Chrome-udvidelse udviklet af Exodia, og dens hovedfunktion er "View Exodia.io analytics within Opensea NFT marketplace.".
Udvidelsesskærmbilleder
Download Exodia-udvidelses-CRX-fil
Download Exodia-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | pmgipgidcnbnbnmjbmjdpblgipmfipgl |
Officiel URL | https://chromewebstore.google.com/detail/exodia/pmgipgidcnbnbnmjbmjdpblgipmfipgl |
Beskrivelse | View Exodia.io analytics within Opensea NFT marketplace. |
Filstørrelse | 30.81 KB |
Antal Installationer | 228 |
Nuværende Version | 0.0.8 |
Senest Opdateret | 2022-04-10 |
Udgivelsesdato | 2021-12-19 |
Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
Udvikler | Exodia |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://exodia.io |
Hjælpeside-URL | https://exodia.io |
URL til Fortrolighedspolitik Side | https://exodia.io/privacy-policy |
Understøttede Sprog | 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" ] } ] } |