Personal Crypto

Chrome Extension for connecting cryptocurrency accounts to Personal Capital

Personal Crypto क्या है?

Personal Crypto Phantom Interactive Studios द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome Extension for connecting cryptocurrency accounts to Personal Capital"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Personal Crypto एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
    }
}