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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Import Yahoo Finance price data for Personal Capital. Support international assets and cryptocurrencies."।

एक्सटेंशन स्क्रीनशॉट्स

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Yahoo Finance for Personal Capital एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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)                    

एक्सटेंशन की मूल जानकारी

नाम Yahoo Finance for Personal Capital Yahoo Finance for Personal Capital
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
    }
}