TakeProfit

TakeProfit

An extension to show when take profit by eee19#9066 (Special thanks to my brother NinJay #8750)

Merlin
Additional files are visible only to premium users

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"
      ]
    }
  ]
}