Kite Zerodha Alert Plugin

Kite Zerodha Alert Plugin

This plugin is used to set alerts on Kite zerodha. It is very handy and alerts you through telegram once secretid is provided by us.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Kite Zerodha Alert Plugin",
  "description": "This plugin is used to set alerts on Kite zerodha. It is very handy and alerts you through telegram once secretid is provided by us.",
  "version": "2.0",
  "incognito": "split",
  "content_scripts": [
    {
      "matches": [
        "https://kite.zerodha.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "template.html"
  ],
  "browser_action": {
    "default_icon": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "storage"
  ]
}