Robinhood Stats

Show rich statistics information of your robinhood brokerage account.

¿Qué es Robinhood Stats?

Robinhood Stats es una extensión de Chrome desarrollada por Loatr, y su función principal es "Show rich statistics information of your robinhood brokerage account.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Robinhood Stats

Descarga archivos de extensión Robinhood Stats en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Robinhood Stats Robinhood Stats
ID oclmopignnglofkabnbjemphhapbdlmg
URL Oficial https://chromewebstore.google.com/detail/robinhood-stats/oclmopignnglofkabnbjemphhapbdlmg
Descripción Show rich statistics information of your robinhood brokerage account.
Tamaño del Archivo 324 KB
Cantidad de Instalaciones 405
Versión Actual 0.1.3
Última Actualización 2021-03-31
Fecha de Publicación 2021-01-07
Calificación 4.17/5 Total de 6 Calificaciones
Desarrollador Loatr
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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
}