Trade Rocket

Trade Rocket

Making auto trading easy!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Trade Rocket",
  "version": "1.0.17",
  "description": "Making auto trading easy!",
  "options_page": "options.html",
  "permissions": [
    "webRequest",
    "notifications",
    "storage",
    "activeTab",
    "declarativeContent",
    "webRequest",
    "*://*.zerodha.com/",
    "*://*.angelbroking.com/*",
    "*://*.5paisa.com/*",
    "*://*.streak.tech/*",
    "*://*.upstox.com/*",
    "*://*.streak.ninja/*"
  ],
  "background": {
    "scripts": [
      "jquery.js",
      "moment.js",
      "background.js"
    ],
    "persistent": true
  },
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/get_started16.png"
    }
  },
  "icons": {
    "16": "images/get_started16.png",
    "48": "images/get_started16.png",
    "128": "images/get_started16.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.zerodha.com/*",
        "*://*.angelbroking.com/*",
        "*://*.5paisa.com/*",
        "*://*.upstox.com/*",
        "*://*.streak.tech/*",
        "*://*.streak.ninja/*"
      ],
      "js": [
        "jquery.js",
        "contentScript.js"
      ],
      "run_at": "document_start"
    }
  ],
  "manifest_version": 2
}