Robinhood Stats
Show rich statistics information of your robinhood brokerage account.
什麼是Robinhood Stats?
Robinhood Stats是由Loatr開發的Chrome擴展程式,該擴展的主要功能是“Show rich statistics information of your robinhood brokerage account.”。
擴展截圖
下載Robinhood Stats擴展crx文件
下載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 |
官方網址 | 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 } |