Robinhood Reports
Displays summary of Robinhood trades.
Τι είναι το Robinhood Reports;
Το Robinhood Reports είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον SK Darapu, και η κύρια λειτουργία του είναι "Displays summary of Robinhood trades.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Robinhood Reports
Λήψη αρχείων επέκτασης Robinhood Reports σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This report shows profit and loss of each stock you traded. It includes Stocks, Options, Dividends, Stock/Option Fee, Margin Interest and Subscription Fee. Rest all transactions are NOT covered. Important : This extension stores all your trading information in your local system. Avoid using it on public systems. Note: This report can be updated only on non-trading hours or weekends. For ex: 8:00AM to 3:00PM CST cannot be updated. * The numbers may not match with Robinhood numbers due to variety of reasons like decimal places, fees, adjustments etc.,. Chrome Version must be greater than v80. Doesn't work on lower versions. Not tested on MAC and any other non-desktop devices. This extension is not affiliated, associated, authorized, endorsed by, or in any way officially connected with the Robinhood Markets, or any of its subsidiaries or its affiliates. All product and company names are trademarks™ or registered® trademarks of their respective holders. Use of them does not imply any affiliation with or endorsement by them.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Robinhood Reports |
ID | bdfejgnkjilbfajogjdjoelflfjjlbce |
Επίσημο URL | https://chromewebstore.google.com/detail/robinhood-reports/bdfejgnkjilbfajogjdjoelflfjjlbce |
Περιγραφή | Displays summary of Robinhood trades. |
Μέγεθος Αρχείου | 2.85 MB |
Αριθμός Εγκαταστάσεων | 2,908 |
Τρέχουσα Έκδοση | 1.0.4 |
Τελευταία Ενημέρωση | 2021-02-16 |
Ημερομηνία Δημοσίευσης | 2020-10-06 |
Αξιολόγηση | 4.48/5 Συνολικά 46 Αξιολογήσεις |
Προγραμματιστής | SK Darapu |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Robinhood Reports", "short_name": "RR", "version": "1.0.4", "description": "Displays summary of Robinhood trades.", "manifest_version": 2, "minimum_chrome_version": "80", "background": { "persistent": false, "scripts": [ "js\/jsstore.min.js", "js\/jsstore.worker-min.js", "background-min.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/robinhood.com\/*" ], "js": [ "capturetoken-min.js" ], "run_at": "document_end" } ], "page_action": { "default_popup": "popup.html", "default_icon": "images\/icon128_2.png", "title": "Robinhood Reports" }, "icons": { "128": "images\/icon128_2.png" }, "permissions": [ "https:\/\/*.robinhood.com\/*", "declarativeContent", "storage", "unlimitedStorage" ], "sandbox": { "pages:": [ "sandbox.html" ] }, "content_security_policy": "sandbox allow-scripts allow-downloads allow-same-origin allow-popups; script-src 'self' 'unsafe-eval'; object-src 'self'" } |