NasExtWallet
The extension for Nebulas Dapp
NasExtWallet란 무엇입니까?
NasExtWallet은(는) NasExtWallet에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The extension for Nebulas Dapp"입니다.
확장 프로그램 스크린샷
NasExtWallet 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
| 공식 URL | 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"
} | |