NasExtWallet
The extension for Nebulas Dapp
什麼是NasExtWallet?
NasExtWallet是由NasExtWallet開發的Chrome擴展程式,該擴展的主要功能是“The extension for Nebulas Dapp”。
擴展截圖
下載NasExtWallet擴展crx文件
下載NasExtWallet擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
ExtensionWallet for nebulas. It't now implemented the NebPay SDK for Nebulas BlockChain. Try it with your Dapp! It's recommended that to import an wallet file that has a small amount of NAS. Don't import an account that has lots of NAS. please give your feedback at GitHub. GitHub: https://github.com/ChengOrangeJu/WebExtensionWallet 这是星云链的钱包插件,包含了web-wallet的主要功能,实现了NebPay接口。可以用来发送转账交易,或者作为Dapp页面的支付通道。 出于安全考虑,不建议直接导入包含大额NAS的账户,请新建一个账户,然后转入少量的NAS使用。
擴展基本資訊
名稱 | |
ID | gehjkhmhclgnkkhpfamakecfgakkfkco |
官方網址 | https://chrome.google.com/webstore/detail/nasextwallet/gehjkhmhclgnkkhpfamakecfgakkfkco |
簡介 | The extension for Nebulas Dapp |
檔案大小 | 1.77 MB |
安裝次數 | 1,699 |
目前版本 | 0.2.8.2 |
更新時間 | 2021-04-13 |
上架時間 | 2020-04-09 |
評分 | 4.64/5 共 11 次評分 |
開發者 | NasExtWallet |
電子郵箱 | [email protected] |
擴展官網 | https://nebulas.io |
隱私政策頁面URL | https://walletapi.nebulas.io/privacy.html |
支援的語言 | en,zh-CN,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "NasExtWallet", "default_locale": "en", "description": "The extension for Nebulas Dapp", "version": "0.2.8.2", "manifest_version": 2, "icons": { "19": "images\/icon_19.png", "38": "images\/icon_38.png", "128": "images\/icon_128.png" }, "permissions": [ "https:\/\/*.nebulas.io\/", "activeTab", "*:\/\/*\/", "storage" ], "background": { "scripts": [ "html\/lib\/nebulas.js", "html\/js\/1-localSave.js", "background.js" ], "persistent": false }, "browser_action": { "default_title": "Nebulas", "default_icon": { "19": "images\/icon_19.png", "38": "images\/icon_38.png" }, "default_popup": "html\/sendNas.html" }, "content_scripts": [ { "all_frames": true, "js": [ "contentscript.js" ], "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "web_accessible_resources": [ "inpage.js" ], "options_page": "html\/options.html", "homepage_url": "https:\/\/github.com\/nebulasio\/WebExtensionWallet" } |