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                     擴展基本資訊
| 名稱 |   |  
| ID | ceepigemlmlbphjhffddplfecgedhoeb | 
| 官方網址 | 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"
        }
    ]
}  |  |