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
    }
}