Robinhood Stats
Show rich statistics information of your robinhood brokerage account.
Robinhood Stats क्या है?
Robinhood Stats Loatr द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Show rich statistics information of your robinhood brokerage account."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Robinhood Stats एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 } |