Tickertape exporter
Export tickertape screener table to a csv file
Что такое Tickertape exporter?
Tickertape exporter - это расширение Chrome, разработанное anirvan.mandal, и его основная функция - "Export tickertape screener table to a csv file".
Снимки экрана расширения
Скачать файл CRX расширения Tickertape exporter
Скачайте файлы расширений Tickertape exporter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Allows users to download the Tickertape Screener table data to a CSV file. Helps in analysing the different stocks, mutual funds available in the market. Note: Paid screener users will not be able to use this version 1.0 of the plugin as it will overwrite the export button functionality
Основная информация о расширении
Название | Tickertape exporter |
ID | heijmlobndihkkpaidbhofckhdbhinma |
Официальный URL | https://chromewebstore.google.com/detail/tickertape-exporter/heijmlobndihkkpaidbhofckhdbhinma |
Описание | Export tickertape screener table to a csv file |
Размер файла | 26.51 KB |
Количество установок | 164 |
Текущая Версия | 1.1.0 |
Последнее Обновление | 2023-06-01 |
Дата публикации | 2023-06-01 |
Рейтинг | 2.00/5 Всего 1 оценок |
Разработчик | anirvan.mandal |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/anirvanmandal/tickertape-exporter |
URL страницы помощи | https://github.com/anirvanmandal/tickertape-exporter/issues |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Tickertape exporter", "description": "Export tickertape screener table to a csv file", "version": "1.1.0", "icons": { "16": "\/src\/images\/logo_16.png", "32": "\/src\/images\/logo_32.png", "48": "\/src\/images\/logo_48.png", "128": "\/src\/images\/logo_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.tickertape.in\/screener\/*" ], "css": [], "js": [ "\/src\/content-script.js" ], "run_at": "document_idle" } ] } |