Personal Crypto

Chrome Extension for connecting cryptocurrency accounts to Personal Capital

Qu'est-ce que Personal Crypto ?

Personal Crypto est une extension Chrome développée par Phantom Interactive Studios, et sa fonction principale est "Chrome Extension for connecting cryptocurrency accounts to Personal Capital".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Personal Crypto

Téléchargez les fichiers d'extension Personal Crypto au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Personal Crypto Personal Crypto
ID lgfflokdinmbpcjnhkdaiajfgalpnkcl
URL Officiel https://chromewebstore.google.com/detail/personal-crypto/lgfflokdinmbpcjnhkdaiajfgalpnkcl
Description Chrome Extension for connecting cryptocurrency accounts to Personal Capital
Taille du Fichier 742 KB
Nombre d'Installations 35
Version Actuelle 0.1.3
Dernière Mise à Jour 2021-04-18
Date de Publication 2021-01-11
Évaluation 5.00/5 Total 2 Évaluations
Développeur Phantom Interactive Studios
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/awoox2/personal-crypto
URL de la Page d'Aide https://github.com/awoox2/personal-crypto/issues
URL de la Page de Politique de Confidentialité https://github.com/awoox2/personal-crypto/blob/master/privacypolicy.md
Langues Prises en Charge 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"
    }
}