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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
# 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 } } |