ENS Content Resolver
Resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content.
ENS Content Resolverคืออะไร?
ENS Content Resolver เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://monkybrain.com และคุณลักษณะหลักของมันคือ "Resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ENS Content Resolver
ดาวน์โหลดไฟล์ส่วนขยาย ENS Content Resolver ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content. It first tries to serve the content through your local IPFS gateway (localhost:8080). If you don't have a node running it will use the public gateway (gateway.ipfs.io) instead. Currently only supports Infura for connecting to the Ethereum network. Support for local Ethereum nodes will arrive soon, as will support for Swarm. If you like this project, please star it on Github. If you'd like to contribute, even better!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ifgfopmoihnnicfgcpafgibiinfkodjf |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/ens-content-resolver/ifgfopmoihnnicfgcpafgibiinfkodjf |
คำอธิบาย | Resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content. |
ขนาดไฟล์ | 403 KB |
จำนวนการติดตั้ง | 161 |
เวอร์ชันปัจจุบัน | 0.1 |
อัปเดตครั้งล่าสุด | 2017-12-15 |
วันที่เผยแพร่ | 2017-12-15 |
ผู้พัฒนา | http://monkybrain.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/monkybrain/ens-content-resolver |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ENS Content Resolver", "description": "Resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content.", "version": "0.1", "browser_action": { "default_icon": "res\/ens_512x512.png", "default_popup": "popup.html" }, "background": { "scripts": [ "js\/background.js" ] }, "icons": { "512": "res\/ens_512x512.png" }, "permissions": [ "activeTab", "storage", "webRequest", "*:\/\/*.eth\/" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "web_accessible_resources": [ "*" ] } |