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”。

扩展截图

screenshot
screenshot
screenshot

下载Personal Crypto扩展crx文件

下载Personal Crypto扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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 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"
    }
}