pfcrypto

cryptocurrency holdings updater

What is pfcrypto?

pfcrypto is a Chrome extension developed by sclem, and its main feature is "cryptocurrency holdings updater".

Extension Screenshots

screenshot

Download pfcrypto Extension CRX File

Download pfcrypto extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Basic chrome extension to automatically update cryptocurrency holdings in Personal Capital (any coin: BTC, ETH, ZEC, etc.)

Instructions, documentation, and source code here: 

https://github.com/sclem/pfcrypto/blob/master/README.md                    

Extension Basic Information

Name pfcrypto pfcrypto
ID ceepigemlmlbphjhffddplfecgedhoeb
Official URL https://chromewebstore.google.com/detail/pfcrypto/ceepigemlmlbphjhffddplfecgedhoeb
Description cryptocurrency holdings updater
File Size 15.06 KB
Installation Count 353
Current Version 1.2.0
Last Updated 2020-10-03
Publish Date 2020-03-16
Rating 4.75/5 Total 20 Ratings
Developer sclem
Email [email protected]
Payment Type free
Help Page URL https://github.com/sclem/pfcrypto
Privacy Policy Page URL https://raw.githubusercontent.com/sclem/harborfreight-coupons-extension/master/PRIVACY
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "pfcrypto",
    "short_name": "personal finance crypto tracker",
    "version": "1.2.0",
    "manifest_version": 2,
    "description": "cryptocurrency holdings updater",
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "https:\/\/home.personalcapital.com\/page\/login\/app*",
        "https:\/\/home.personalcapital.com\/api\/*",
        "https:\/\/api.alternative.me\/v1\/ticker\/",
        "https:\/\/api.blockcypher.com\/v1\/*",
        "https:\/\/api.ethplorer.io\/getAddressInfo\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/home.personalcapital.com\/page\/login\/app*"
            ],
            "js": [
                "personalcapital.js"
            ],
            "run_at": "document_idle"
        }
    ]
}