Quannected

Quannected

Place orders on Robinhood via TradingView alerts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Quannected",
  "description": "Place orders on Robinhood via TradingView alerts",
  "version": "1.0",
  "browser_action": {
    "default_title": "Quannected",
    "default_icon": "./images/icon.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "./images/icon.png",
    "48": "./images/icon.png",
    "128": "./images/icon.png"
  },
  "background": {
    "scripts": [
      "./js/jquery.min.js",
      "./js/config.js",
      "./js/core.js",
      "./js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.tradingview.com/*",
        "https://tradingview.com/*"
      ],
      "js": [
        "./js/jquery.min.js",
        "./js/simpleNotify.js",
        "./js/config.js",
        "./js/core.js",
        "./js/content_scriptAlert.js",
        "./js/content_scriptBuy.js"
      ],
      "css": [
        "./css/content_css.css",
        "./css/simpleNotifyStyle.css"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "https://localhost:44333/*",
    "http://robinhoodextension.gear.host/*"
  ]
}