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是由changlan9開發的Chrome擴展程式,該擴展的主要功能是“Import Yahoo Finance price data for Personal Capital. Support international assets and cryptocurrencies.”。
擴展截圖
下載Yahoo Finance for Personal Capital擴展crx文件
下載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 |
官方網址 | 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 } } |