Tickertape exporter

Export tickertape screener table to a csv file

Co to jest Tickertape exporter?

Tickertape exporter to rozszerzenie Chrome opracowane przez anirvan.mandal, a jego główną funkcją jest „Export tickertape screener table to a csv file”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Tickertape exporter

Pobierz pliki rozszerzeń Tickertape exporter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Tickertape exporter Tickertape exporter
ID heijmlobndihkkpaidbhofckhdbhinma
Oficjalny URL https://chromewebstore.google.com/detail/tickertape-exporter/heijmlobndihkkpaidbhofckhdbhinma
Opis Export tickertape screener table to a csv file
Rozmiar pliku 26.51 KB
Liczba instalacji 164
Aktualna Wersja 1.1.0
Ostatnia Aktualizacja 2023-06-01
Data Publikacji 2023-06-01
Ocena 2.00/5 Łącznie 1 Oceny
Deweloper anirvan.mandal
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/anirvanmandal/tickertape-exporter
Adres URL Strony Pomocy https://github.com/anirvanmandal/tickertape-exporter/issues
Obsługiwane Języki 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"
        }
    ]
}