Tickertape exporter
Export tickertape screener table to a csv file
Cos'è Tickertape exporter?
Tickertape exporter è un'estensione di Chrome sviluppata da anirvan.mandal, e la sua funzione principale è "Export tickertape screener table to a csv file".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Tickertape exporter
Scarica i file di estensione Tickertape exporter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Tickertape exporter |
ID | heijmlobndihkkpaidbhofckhdbhinma |
URL Ufficiale | https://chromewebstore.google.com/detail/tickertape-exporter/heijmlobndihkkpaidbhofckhdbhinma |
Descrizione | Export tickertape screener table to a csv file |
Dimensione del File | 26.51 KB |
Conteggio Installazioni | 164 |
Versione Corrente | 1.1.0 |
Ultimo Aggiornamento | 2023-06-01 |
Data di Pubblicazione | 2023-06-01 |
Valutazione | 2.00/5 Totale 1 Valutazioni |
Sviluppatore | anirvan.mandal |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/anirvanmandal/tickertape-exporter |
URL della Pagina di Aiuto | https://github.com/anirvanmandal/tickertape-exporter/issues |
Lingue Supportate | 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" } ] } |