Yahoo Finance for Personal Capital
Import Yahoo Finance price data for Personal Capital. Support international assets and cryptocurrencies.
Yahoo Finance for Personal Capitalคืออะไร?
Yahoo Finance for Personal Capital เป็นส่วนขยายของ Chrome ที่พัฒนาโดย changlan9 และคุณลักษณะหลักของมันคือ "Import Yahoo Finance price data for Personal Capital. Support international assets and cryptocurrencies."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Yahoo Finance for Personal Capital
ดาวน์โหลดไฟล์ส่วนขยาย Yahoo Finance for Personal Capital ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
# Yahoo Finance for Personal Capital A Chrome extension for Personal Capital to fetch latest price quotes for assets in Manual Investment Holdings. It supports all tickers available in Yahoo Finance, including: * US and international equities, bonds, and ETFs (e.g. `AAPL` and `510330.SS`) * Currencies (e.g. `CNYUSD=X`) * Cryptocurrencies (e.g. `BTC-USD`) ## Usage: * Install the extension. * Add a holding in a Manual Investment Holdings account. Enter the ticker in Yahoo Finance. Enter the number of shares you hold (decimal is fine) and any price. * Refresh the page. The price will update after a few seconds and every time you log in in the future. ## Roadmap * Multi-currency support for international assets. Currently only USD and CNY assets are supported. ## Acknowledgement I rewrite the extension based on [pfcrypto](https://github.com/sclem/pfcrypto), an extension that completely focuses on cryptocurrencies. Feel free to check it out! Like this extension? Donate: `1KqYsYCPgq71PaPbQQ14EvtywMhfWV4Gb9` (BTC)
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ibmegghmgcmjpfjkolcjigicjgbhejgd |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/yahoo-finance-for-persona/ibmegghmgcmjpfjkolcjigicjgbhejgd |
คำอธิบาย | Import Yahoo Finance price data for Personal Capital. Support international assets and cryptocurrencies. |
ขนาดไฟล์ | 9.24 KB |
จำนวนการติดตั้ง | 1,000 |
เวอร์ชันปัจจุบัน | 0.1.0 |
อัปเดตครั้งล่าสุด | 2019-12-15 |
วันที่เผยแพร่ | 2019-12-15 |
คะแนน | 3.14/5 รวมทั้งหมด 7 คะแนน |
ผู้พัฒนา | changlan9 |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/changlan/personal-capital-y |
URL หน้าช่วยเหลือ | https://github.com/changlan/personal-capital-y |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Yahoo Finance for Personal Capital", "short_name": "yf4pc", "version": "0.1.0", "manifest_version": 2, "description": "Import Yahoo Finance price data for Personal Capital. Support international assets and cryptocurrencies.", "icons": { "128": "icons\/icon128.png" }, "permissions": [ "https:\/\/home.personalcapital.com\/page\/login\/app*", "https:\/\/home.personalcapital.com\/api\/*", "https:\/\/query1.finance.yahoo.com\/v7\/finance\/quote*" ], "content_scripts": [ { "matches": [ "https:\/\/home.personalcapital.com\/page\/login\/app*" ], "js": [ "main.js" ], "run_at": "document_idle" } ], "background": { "scripts": [ "background.js" ], "persistent": false } } |