Exodia
View Exodia.io analytics within Opensea NFT marketplace.
Exodia là gì?
Exodia là một tiện ích mở rộng Chrome được phát triển bởi Exodia, và tính năng chính của nó là "View Exodia.io analytics within Opensea NFT marketplace.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Exodia
Tải xuống các tệp mở rộng Exodia dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | pmgipgidcnbnbnmjbmjdpblgipmfipgl |
URL Chính Thức | https://chromewebstore.google.com/detail/exodia/pmgipgidcnbnbnmjbmjdpblgipmfipgl |
Mô tả | View Exodia.io analytics within Opensea NFT marketplace. |
Kích Thước Tệp | 30.81 KB |
Số Lần Cài Đặt | 228 |
Phiên Bản Hiện Tại | 0.0.8 |
Cập Nhật Lần Cuối | 2022-04-10 |
Ngày Phát Hành | 2021-12-19 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Exodia |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://exodia.io |
URL Trang Trợ Giúp | https://exodia.io |
URL Trang Chính Sách Bảo Mật | https://exodia.io/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |