Tickertape exporter
Export tickertape screener table to a csv file
Was ist Tickertape exporter?
Tickertape exporter ist eine Chrome-Erweiterung, die von anirvan.mandal entwickelt wurde, und ihr Hauptmerkmal ist "Export tickertape screener table to a csv file".
Erweiterungsscreenshots
Tickertape exporter-Erweiterungs-CRX-Datei herunterladen
Laden Sie Tickertape exporter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | heijmlobndihkkpaidbhofckhdbhinma |
| Offizielle URL | https://chromewebstore.google.com/detail/tickertape-exporter/heijmlobndihkkpaidbhofckhdbhinma |
| Beschreibung | Export tickertape screener table to a csv file |
| Dateigröße | 26.51 KB |
| Installationsanzahl | 164 |
| Aktuelle Version | 1.1.0 |
| Letztes Update | 2023-06-01 |
| Veröffentlichungsdatum | 2023-06-01 |
| Bewertung | 2.00/5 Insgesamt 1 Bewertungen |
| Entwickler | anirvan.mandal |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/anirvanmandal/tickertape-exporter |
| Hilfeseite URL | https://github.com/anirvanmandal/tickertape-exporter/issues |
| Unterstützte Sprachen | 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"
}
]
} | |