pfcrypto

cryptocurrency holdings updater

Qu'est-ce que pfcrypto ?

pfcrypto est une extension Chrome développée par sclem, et sa fonction principale est "cryptocurrency holdings updater".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension pfcrypto

Téléchargez les fichiers d'extension pfcrypto 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

                        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                    

Informations de Base sur l'Extension

Nom pfcrypto pfcrypto
ID ceepigemlmlbphjhffddplfecgedhoeb
URL Officiel https://chromewebstore.google.com/detail/pfcrypto/ceepigemlmlbphjhffddplfecgedhoeb
Description cryptocurrency holdings updater
Taille du Fichier 15.06 KB
Nombre d'Installations 353
Version Actuelle 1.2.0
Dernière Mise à Jour 2020-10-03
Date de Publication 2020-03-16
Évaluation 4.75/5 Total 20 Évaluations
Développeur sclem
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://github.com/sclem/pfcrypto
URL de la Page de Politique de Confidentialité https://raw.githubusercontent.com/sclem/harborfreight-coupons-extension/master/PRIVACY
Langues Prises en Charge 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"
        }
    ]
}