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)”。

擴展截圖

screenshot
screenshot
screenshot

下載TakeProfit擴展crx文件

下載TakeProfit擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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 TakeProfit
ID fnaifallefkhnfppjalkjkeddlbfafpo
官方網址 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"
            ]
        }
    ]
}