Sats Extension by Casa
Easily make & receive Bitcoin and Lightning Network payments on the web using your Casa Node.
Sats Extension by Casa란 무엇입니까?
Sats Extension by Casa은(는) https://keys.casa에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily make & receive Bitcoin and Lightning Network payments on the web using your Casa Node."입니다.
확장 프로그램 스크린샷
Sats Extension by Casa 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The Sats Extension is the fastest, easiest way to use Bitcoin and the Lightning Network on the web. - Easily connect to your Casa Node with one click. No more digging through confusing command line instructions to find authentication files. - Keep your funds secure by connecting with your Casa Node password - Make or receive Lightning payments on websites without leaving the site. The Sats Extension works seamlessly with your node to let you transact without navigating through the node interface. - Quickly deposit and withdraw Bitcoin from your Casa Node's on-chain wallet.
확장 프로그램 기본 정보
이름 | |
ID | lnaedehiikghclgaikolambpbpeknpef |
공식 URL | https://chrome.google.com/webstore/detail/sats-extension-by-casa/lnaedehiikghclgaikolambpbpeknpef |
설명 | Easily make & receive Bitcoin and Lightning Network payments on the web using your Casa Node. |
파일 크기 | 330 KB |
설치 횟수 | 784 |
현재 버전 | 1.0.10 |
최근 업데이트 | 2019-07-28 |
출시 날짜 | 2019-07-28 |
평점 | 5.00/5 총 10 개의 평점 |
개발자 | https://keys.casa |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://keys.casa/node-extension/ |
도움말 페이지 URL | https://support.keys.casa |
개인정보 보호 정책 페이지 URL | https://keys.casa/privacy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Sats Extension by Casa", "description": "Easily make & receive Bitcoin and Lightning Network payments on the web using your Casa Node.", "version": "1.0.10", "manifest_version": 2, "icons": { "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "browser_action": { "default_title": "Sats Extension by Casa", "default_popup": "popup\/popup.html" }, "options_ui": { "page": "options\/options.html", "open_in_tab": true, "chrome_style": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_start", "all_frames": true } ], "background": { "scripts": [ "background.js" ], "persistent": true }, "web_accessible_resources": [ "*.js", "*.html" ], "permissions": [ "http:\/\/casa-node.local\/", "storage", "activeTab", "clipboardWrite", "contextMenus" ] } |