Robinhood Stats

Show rich statistics information of your robinhood brokerage account.

Was ist Robinhood Stats?

Robinhood Stats ist eine Chrome-Erweiterung, die von Loatr entwickelt wurde, und ihr Hauptmerkmal ist "Show rich statistics information of your robinhood brokerage account.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Robinhood Stats-Erweiterungs-CRX-Datei herunterladen

Laden Sie Robinhood Stats-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Robinhood Stats Robinhood Stats
ID oclmopignnglofkabnbjemphhapbdlmg
Offizielle URL https://chromewebstore.google.com/detail/robinhood-stats/oclmopignnglofkabnbjemphhapbdlmg
Beschreibung Show rich statistics information of your robinhood brokerage account.
Dateigröße 324 KB
Installationsanzahl 405
Aktuelle Version 0.1.3
Letztes Update 2021-03-31
Veröffentlichungsdatum 2021-01-07
Bewertung 4.17/5 Insgesamt 6 Bewertungen
Entwickler Loatr
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
}