PlentyPlan Dividend Extension for Robinhood

This extension shows your dividend yield when you login in to Robinhood.com. Some people prefer to measure their investing success…

PlentyPlan Dividend Extension for Robinhoodとは何ですか?

PlentyPlan Dividend Extension for Robinhoodはhttps://www.plentyplan.comによって開発されたChromeの拡張機能で、その主な機能は「This extension shows your dividend yield when you login in to Robinhood.com. Some people prefer to measure their investing success…」です。

拡張機能のスクリーンショット

screenshot

PlentyPlan Dividend Extension for Robinhood拡張機能のCRXファイルをダウンロード

PlentyPlan Dividend Extension for Robinhood拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension shows your dividend yield when you login in to Robinhood.com. Some people prefer to measure their investing success by dividend payouts rather than today's market fluctuations. Robinhood's homescreen displays your current portfolio value and the day's change in value, but it does not display any information on recent dividends. This plugin reads Robinhood's dividend history, and computes the total over the last 30 days, 90 days, and last year. It then computes the effective dividend yield from that, both on current account balance as well as on principal invested.                    

拡張機能の基本情報

名前 PlentyPlan Dividend Extension for Robinhood PlentyPlan Dividend Extension for Robinhood
ID blhbfgmffophjibmbonfhpoebnoammko
公式URL https://chrome.google.com/webstore/detail/plentyplan-dividend-exten/blhbfgmffophjibmbonfhpoebnoammko
説明 This extension shows your dividend yield when you login in to Robinhood.com. Some people prefer to measure their investing success…
ファイルサイズ 103 KB
インストール数 21
現在のバージョン 1.0.0.0
最終更新日 2019-06-28
公開日 2019-06-28
評価 3.00/5 合計 2 レビュー
開発者 https://www.plentyplan.com
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PlentyPlan Dividend Extension for Robinhood",
    "version": "1.0.0.0",
    "permissions": [
        "storage",
        "tabs",
        "declarativeContent",
        "*:\/\/*.robinhood.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/robinhood.com\/"
            ],
            "js": [
                "content.js",
                "jquery-3.4.1.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "page_action": {
        "default_icon": "icon-128x128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon-16x16.png",
        "32": "icon-32x32.png",
        "64": "icon-64x64.png",
        "128": "icon-128x128.png"
    },
    "background": {
        "page": "background.html",
        "persistent": false
    }
}