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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.plentyplan.com และคุณลักษณะหลักของมันคือ "This extension shows your dividend yield when you login in to Robinhood.com. Some people prefer to measure their investing success…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PlentyPlan Dividend Extension for Robinhood
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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 } } |