pfcrypto
cryptocurrency holdings updater
Wat is pfcrypto?
pfcrypto is een Chrome-extensie ontwikkeld door sclem, en de belangrijkste functie is "cryptocurrency holdings updater".
Extensie Screenshots
Download het CRX-bestand van de extensie pfcrypto
Download pfcrypto-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 Basisinformatie over de Extensie
| Naam | |
| ID | ceepigemlmlbphjhffddplfecgedhoeb |
| Officiële URL | https://chromewebstore.google.com/detail/pfcrypto/ceepigemlmlbphjhffddplfecgedhoeb |
| Beschrijving | cryptocurrency holdings updater |
| Bestandsgrootte | 15.06 KB |
| Aantal Installaties | 353 |
| Huidige Versie | 1.2.0 |
| Laatst Bijgewerkt | 2020-10-03 |
| Publicatiedatum | 2020-03-16 |
| Beoordeling | 4.75/5 Totaal 20 Beoordelingen |
| Ontwikkelaar | sclem |
| [email protected] | |
| Betalingswijze | free |
| Help Pagina-URL | https://github.com/sclem/pfcrypto |
| URL van de Privacybeleid Pagina | https://raw.githubusercontent.com/sclem/harborfreight-coupons-extension/master/PRIVACY |
| Ondersteunde Talen | 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"
}
]
} | |