pfcrypto
cryptocurrency holdings updater
Apa itu pfcrypto?
pfcrypto adalah ekstensi Chrome yang dikembangkan oleh sclem, dan fitur utamanya adalah "cryptocurrency holdings updater".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi pfcrypto
Unduh file ekstensi pfcrypto dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | pfcrypto |
ID | ceepigemlmlbphjhffddplfecgedhoeb |
URL Resmi | https://chromewebstore.google.com/detail/pfcrypto/ceepigemlmlbphjhffddplfecgedhoeb |
Deskripsi | cryptocurrency holdings updater |
Ukuran File | 15.06 KB |
Jumlah Instalasi | 353 |
Versi Saat Ini | 1.2.0 |
Terakhir Diperbarui | 2020-10-03 |
Tanggal Publikasi | 2020-03-16 |
Penilaian | 4.75/5 Total 20 Penilaian |
Pengembang | sclem |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Bantuan | https://github.com/sclem/pfcrypto |
URL Halaman Kebijakan Privasi | https://raw.githubusercontent.com/sclem/harborfreight-coupons-extension/master/PRIVACY |
Bahasa yang Didukung | 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" } ] } |