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.

什么是Kite Zerodha Alert Plugin?

Kite Zerodha Alert Plugin是由pradeepkalra09开发的Chrome扩展程序,该扩展的主要功能是“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.”。

扩展截图

screenshot
screenshot
screenshot

下载Kite Zerodha Alert Plugin扩展crx文件

下载Kite Zerodha Alert Plugin扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        The item is used to set alerts on stocks while trading on zerodha in real time over telegram. It takes no more than a second to set alert and alerts will be notified via telegram                    

扩展基本信息

名称 Kite Zerodha Alert Plugin Kite Zerodha Alert Plugin
ID pelfbijkgbkfmmmfbblgcedkljobelda
官方URL https://chromewebstore.google.com/detail/kite-zerodha-alert-plugin/pelfbijkgbkfmmmfbblgcedkljobelda
简介 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.
文件大小 9.61 KB
安装次数 250
当前版本 2.0
更新时间 2021-06-13
上架时间 2021-06-07
开发者 pradeepkalra09
电子邮箱 [email protected]
付费类型 free
支持的语言 en
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"
    ]
}