TakeProfit
An extension to show when take profit by eee19#9066 (Special thanks to my brother NinJay #8750)
¿Qué es TakeProfit?
TakeProfit es una extensión de Chrome desarrollada por edeoleo, y su función principal es "An extension to show when take profit by eee19#9066 (Special thanks to my brother NinJay #8750)".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión TakeProfit
Descarga archivos de extensión TakeProfit en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | TakeProfit |
ID | fnaifallefkhnfppjalkjkeddlbfafpo |
URL Oficial | https://chromewebstore.google.com/detail/takeprofit/fnaifallefkhnfppjalkjkeddlbfafpo |
Descripción | An extension to show when take profit by eee19#9066 (Special thanks to my brother NinJay #8750) |
Tamaño del Archivo | 369 KB |
Cantidad de Instalaciones | 103 |
Versión Actual | 0.7 |
Última Actualización | 2022-03-15 |
Fecha de Publicación | 2021-01-11 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | edeoleo |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } ] } |