pfcrypto
cryptocurrency holdings updater
什么是pfcrypto?
pfcrypto是由sclem开发的Chrome扩展程序,该扩展的主要功能是“cryptocurrency holdings updater”。
扩展截图
下载pfcrypto扩展crx文件
下载pfcrypto扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | pfcrypto |
ID | ceepigemlmlbphjhffddplfecgedhoeb |
官方URL | https://chromewebstore.google.com/detail/pfcrypto/ceepigemlmlbphjhffddplfecgedhoeb |
简介 | cryptocurrency holdings updater |
文件大小 | 15.06 KB |
安装次数 | 353 |
当前版本 | 1.2.0 |
更新时间 | 2020-10-03 |
上架时间 | 2020-03-16 |
评分 | 4.75/5 共20次评分 |
开发者 | sclem |
电子邮箱 | [email protected] |
付费类型 | free |
帮助页面URL | https://github.com/sclem/pfcrypto |
隐私政策页面URL | https://raw.githubusercontent.com/sclem/harborfreight-coupons-extension/master/PRIVACY |
支持的语言 | 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" } ] } |