optionTrader

optionTrader

optionTrader allows you to view NSE options details in a nice graphical way

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "optionTrader",
  "description": "optionTrader allows you to view NSE options details in a nice graphical way",
  "version": "0.77",
  "author": "Soance Innovations LLP",
  "manifest_version": 3,
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.nseindia.com/*",
        "https://web.sensibull.com/*",
        "https://app.upstox.com/*",
        "https://app.upstox.com/*",
        "https://pro.upstox.com/*",
        "https://www.delta.exchange/*",
        "https://www.paytmmoney.com/*"
      ],
      "exclude_globs": [
        "*static*"
      ],
      "run_at": "document_end",
      "all_frames": false,
      "js": [
        "content.js",
        "/js/app.js",
        "/js/app.chunk.js",
        "/analytics/analytics.js",
        "/analytics/gtm.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "storage",
    "notifications"
  ],
  "background": {
    "service_worker": "service-worker.js"
  },
  "options_page": "settings/activate.html",
  "web_accessible_resources": [
    {
      "resources": [
        "sounds/stop.mp3",
        "sounds/buy.mp3",
        "sounds/sell.mp3",
        "images/quotes.png"
      ],
      "matches": [
        "https://www.nseindia.com/*",
        "https://web.sensibull.com/*",
        "https://app.upstox.com/*",
        "https://pro.upstox.com/*",
        "https://www.delta.exchange/*",
        "https://www.paytmmoney.com/*",
        "https://kite.zerodha.com/*"
      ],
      "use_dynamic_url": true
    }
  ]
}