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…
Vad är PlentyPlan Dividend Extension for Robinhood?
PlentyPlan Dividend Extension for Robinhood är en Chrome-tillägg utvecklad av https://www.plentyplan.com, och dess huvudfunktion är "This extension shows your dividend yield when you login in to Robinhood.com. Some people prefer to measure their investing success…".
Tilläggsskärmbilder
Ladda ner PlentyPlan Dividend Extension for Robinhood-förlängningens CRX-fil
Ladda ner PlentyPlan Dividend Extension for Robinhood-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | PlentyPlan Dividend Extension for Robinhood |
ID | blhbfgmffophjibmbonfhpoebnoammko |
Officiell webbadress | https://chrome.google.com/webstore/detail/plentyplan-dividend-exten/blhbfgmffophjibmbonfhpoebnoammko |
Beskrivning | This extension shows your dividend yield when you login in to Robinhood.com. Some people prefer to measure their investing success… |
Filstorlek | 103 KB |
Antal Installationer | 21 |
Aktuell Version | 1.0.0.0 |
Senast Uppdaterad | 2019-06-28 |
Publiceringsdatum | 2019-06-28 |
Betyg | 3.00/5 Totalt 2 Betyg |
Utvecklare | https://www.plentyplan.com |
Betalningssätt | free |
Stödda Språk | 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 } } |