pfcrypto

cryptocurrency holdings updater

pfcryptoคืออะไร?

pfcrypto เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sclem และคุณลักษณะหลักของมันคือ "cryptocurrency holdings updater"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย pfcrypto

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
        }
    ]
}