Exodia
View Exodia.io analytics within Opensea NFT marketplace.
Exodiaคืออะไร?
Exodia เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Exodia และคุณลักษณะหลักของมันคือ "View Exodia.io analytics within Opensea NFT marketplace."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Exodia
ดาวน์โหลดไฟล์ส่วนขยาย Exodia ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | pmgipgidcnbnbnmjbmjdpblgipmfipgl |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/exodia/pmgipgidcnbnbnmjbmjdpblgipmfipgl |
คำอธิบาย | View Exodia.io analytics within Opensea NFT marketplace. |
ขนาดไฟล์ | 30.81 KB |
จำนวนการติดตั้ง | 228 |
เวอร์ชันปัจจุบัน | 0.0.8 |
อัปเดตครั้งล่าสุด | 2022-04-10 |
วันที่เผยแพร่ | 2021-12-19 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | Exodia |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://exodia.io |
URL หน้าช่วยเหลือ | https://exodia.io |
URL หน้านโยบายความเป็นส่วนตัว | https://exodia.io/privacy-policy |
ภาษาที่รองรับ | 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" ] } ] } |