Yahoo Finance for Personal Capital

Import Yahoo Finance price data for Personal Capital. Support international assets and cryptocurrencies.

Yahoo Finance for Personal Capital là gì?

Yahoo Finance for Personal Capital là một tiện ích mở rộng Chrome được phát triển bởi changlan9, và tính năng chính của nó là "Import Yahoo Finance price data for Personal Capital. Support international assets and cryptocurrencies.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng Yahoo Finance for Personal Capital

Tải xuống các tệp mở rộng Yahoo Finance for Personal Capital dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        # 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)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Yahoo Finance for Personal Capital Yahoo Finance for Personal Capital
ID ibmegghmgcmjpfjkolcjigicjgbhejgd
URL Chính Thức https://chrome.google.com/webstore/detail/yahoo-finance-for-persona/ibmegghmgcmjpfjkolcjigicjgbhejgd
Mô tả Import Yahoo Finance price data for Personal Capital. Support international assets and cryptocurrencies.
Kích Thước Tệp 9.24 KB
Số Lần Cài Đặt 1,000
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2019-12-15
Ngày Phát Hành 2019-12-15
Đánh Giá 3.14/5 Tổng số 7 Đánh Giá
Nhà Phát Triển changlan9
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/changlan/personal-capital-y
URL Trang Trợ Giúp https://github.com/changlan/personal-capital-y
Ngôn Ngữ Được Hỗ Trợ 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
    }
}