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 |
Eメール | [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" } ] } |