Personal Crypto
Chrome Extension for connecting cryptocurrency accounts to Personal Capital
Personal Crypto란 무엇입니까?
Personal Crypto은(는) Phantom Interactive Studios에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome Extension for connecting cryptocurrency accounts to Personal Capital"입니다.
확장 프로그램 스크린샷
Personal Crypto 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Personal Crypto is a free chrome extension for connecting your cryptocurrency exchanges and wallets to your Personal Capital dashboard. It will also update manually entered holding prices as long as the ticker is prefixed with "CRYPTO " (eg. "CRYPTO BTC"). UPDATE: Personal Crypto now supports Personal Capital's Cryptocurrency BETA accounts. These accounts update the price natively, and therefore do not need to have the "CRYPTO" prefix. If connected to an exchange, the quantity will still be updated based on the ticker. Supported Exchanges: - BinanceUS - Coinbase - Coinbase Pro - KuCoin Supported Wallets: - Bitcoin - Ethereum Personal Capital offers great free wealth management tools, but does not currently support cryptocurrencies. This extension fills that gap. For more details, a list of supported exchanges, and instructions, visit: https://github.com/awoox2/personal-crypto DISCLAIMER: This project was developed for fun. Use this extension at your own risk. I am not responsible for any consequences of using this project, including but not limited to: - any funds lost from improperly secured API keys. API keys added to this extension are not secure by default and could potentially be accessed by the browser. "Read only" security should be set on the exchange when creating the API key. API secret keys are never sent to from your browser by this application unless in an encrypted request signature. - any actions taken by Personal Capital for Terms of Service violations
확장 프로그램 기본 정보
이름 | Personal Crypto |
ID | lgfflokdinmbpcjnhkdaiajfgalpnkcl |
공식 URL | https://chromewebstore.google.com/detail/personal-crypto/lgfflokdinmbpcjnhkdaiajfgalpnkcl |
설명 | Chrome Extension for connecting cryptocurrency accounts to Personal Capital |
파일 크기 | 742 KB |
설치 횟수 | 35 |
현재 버전 | 0.1.3 |
최근 업데이트 | 2021-04-18 |
출시 날짜 | 2021-01-11 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Phantom Interactive Studios |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/awoox2/personal-crypto |
도움말 페이지 URL | https://github.com/awoox2/personal-crypto/issues |
개인정보 보호 정책 페이지 URL | https://github.com/awoox2/personal-crypto/blob/master/privacypolicy.md |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Personal Crypto", "short_name": "Personal Crypto", "version": "0.1.3", "description": "Chrome Extension for connecting cryptocurrency accounts to Personal Capital", "permissions": [ "storage" ], "action": { "default_popup": "popup\/index.html", "default_title": "Personal Crypto" }, "icons": { "256": ".\/assets\/bitcoin256.png" }, "content_scripts": [ { "js": [ "contentscript.js" ], "matches": [ "https:\/\/home.personalcapital.com\/page\/login\/app*" ], "run_at": "document_idle" } ], "background": { "service_worker": "background.js" } } |