TakeProfit
An extension to show when take profit by eee19#9066 (Special thanks to my brother NinJay #8750)
TakeProfit란 무엇입니까?
TakeProfit은(는) edeoleo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension to show when take profit by eee19#9066 (Special thanks to my brother NinJay #8750)"입니다.
확장 프로그램 스크린샷
TakeProfit 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Now you can Calculate what % of your account you can invest in each trade (10% and 20%) Show when you take profit 30%/70%/100% on Robinhood.com and calculate profit % based on price contract move (Options chain https://robinhood.com/options/chains/{ID}) got to any options/chains to see the possible profit go to your options page to see you exit plan when you have contracts in that ticker https://robinhood.com/options/ Video explanation and settings coming soon
확장 프로그램 기본 정보
이름 | TakeProfit |
ID | fnaifallefkhnfppjalkjkeddlbfafpo |
공식 URL | https://chromewebstore.google.com/detail/takeprofit/fnaifallefkhnfppjalkjkeddlbfafpo |
설명 | An extension to show when take profit by eee19#9066 (Special thanks to my brother NinJay #8750) |
파일 크기 | 369 KB |
설치 횟수 | 103 |
현재 버전 | 0.7 |
최근 업데이트 | 2022-03-15 |
출시 날짜 | 2021-01-11 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | edeoleo |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TakeProfit", "version": "0.7", "description": "An extension to show when take profit by eee19#9066 (Special thanks to my brother NinJay\n#8750)", "manifest_version": 2, "permissions": [ "https:\/\/robinhood.com\/*" ], "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/Icon-16.png", "32": "images\/Icon-32.png", "48": "images\/Icon-48.png", "128": "images\/Icon-128.png" } }, "icons": { "16": "images\/Icon-16.png", "32": "images\/Icon-32.png", "48": "images\/Icon-48.png", "128": "images\/Icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/robinhood.com\/*" ], "js": [ "js\/popup.js" ] } ] } |