Robinhood Stats
Show rich statistics information of your robinhood brokerage account.
Robinhood Statsคืออะไร?
Robinhood Stats เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Loatr และคุณลักษณะหลักของมันคือ "Show rich statistics information of your robinhood brokerage account."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Robinhood Stats
ดาวน์โหลดไฟล์ส่วนขยาย Robinhood Stats ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Features: 1. All time stats (gain/loss, options, dividends, interest etc) 2. Short/Long term gain/loss for each year. 3. Individual stock stats (holding period, order history, options history etc) 4. Portfolio diversity list view (including crypto) 5. Stock comparison ----- DISCLAIMER: ----- 1. This extension is not affiliated, associated, authorized, endorsed by the Robinhood Markets Inc. 2. Data shown from the extension may not be accurate due to various reason, do not use data from this extension to make any financial or tax decisions.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Robinhood Stats |
ID | oclmopignnglofkabnbjemphhapbdlmg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/robinhood-stats/oclmopignnglofkabnbjemphhapbdlmg |
คำอธิบาย | Show rich statistics information of your robinhood brokerage account. |
ขนาดไฟล์ | 324 KB |
จำนวนการติดตั้ง | 405 |
เวอร์ชันปัจจุบัน | 0.1.3 |
อัปเดตครั้งล่าสุด | 2021-03-31 |
วันที่เผยแพร่ | 2021-01-07 |
คะแนน | 4.17/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | Loatr |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "$schema": "http:\/\/json.schemastore.org\/chrome-manifest", "name": "Robinhood Stats", "version": "0.1.3", "description": "Show rich statistics information of your robinhood brokerage account. ", "permissions": [ "declarativeContent", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html" }, "icons": { "16": "rs16.png", "32": "rs32.png", "48": "rs48.png", "128": "rs128.png" }, "content_scripts": [ { "matches": [ "https:\/\/robinhood.com\/*" ], "run_at": "document_end", "js": [ "app.js" ] } ], "manifest_version": 2 } |