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…”。
擴展截圖
下載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 |
ID | blhbfgmffophjibmbonfhpoebnoammko |
官方網址 | 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 } } |