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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 } |