Tickertape exporter
Export tickertape screener table to a csv file
¿Qué es Tickertape exporter?
Tickertape exporter es una extensión de Chrome desarrollada por anirvan.mandal, y su función principal es "Export tickertape screener table to a csv file".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Tickertape exporter
Descarga archivos de extensión Tickertape exporter en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Tickertape exporter |
ID | heijmlobndihkkpaidbhofckhdbhinma |
URL Oficial | https://chromewebstore.google.com/detail/tickertape-exporter/heijmlobndihkkpaidbhofckhdbhinma |
Descripción | Export tickertape screener table to a csv file |
Tamaño del Archivo | 26.51 KB |
Cantidad de Instalaciones | 164 |
Versión Actual | 1.1.0 |
Última Actualización | 2023-06-01 |
Fecha de Publicación | 2023-06-01 |
Calificación | 2.00/5 Total de 1 Calificaciones |
Desarrollador | anirvan.mandal |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/anirvanmandal/tickertape-exporter |
URL de la Página de Ayuda | https://github.com/anirvanmandal/tickertape-exporter/issues |
Idiomas Soportados | 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" } ] } |