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 |
官方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 } |