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 - это расширение Chrome, разработанное pradeepkalra09, и его основная функция - "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.".
Снимки экрана расширения
Скачать файл CRX расширения Kite Zerodha Alert Plugin
Скачайте файлы расширений 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 |
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" ] } |