Robinhood Helper

Robinhood Helper

When using a Finviz screener, this extension will open all tickers in Robinhood in new tabs. More features to come!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Robinhood Helper",
  "version": "1.0",
  "content_scripts": [
    {
      "matches": [
        "https://*.finviz.com/*"
      ],
      "js": [
        "jquery-2.2.4.min.js",
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Robinhood Helper",
    "commented": {
      "default_icon": "icon.png",
      "default_popup": "popup.html"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}