Tickertape exporter

Export tickertape screener table to a csv file

O que é Tickertape exporter?

Tickertape exporter é uma extensão do Chrome desenvolvida por anirvan.mandal, e sua principal característica é "Export tickertape screener table to a csv file".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Tickertape exporter

Baixe arquivos de extensão Tickertape exporter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Tickertape exporter Tickertape exporter
ID heijmlobndihkkpaidbhofckhdbhinma
URL Oficial https://chromewebstore.google.com/detail/tickertape-exporter/heijmlobndihkkpaidbhofckhdbhinma
Descrição Export tickertape screener table to a csv file
Tamanho do Arquivo 26.51 KB
Contagem de Instalações 164
Versão Atual 1.1.0
Última Atualização 2023-06-01
Data de Publicação 2023-06-01
Classificação 2.00/5 Total de 1 Avaliações
Desenvolvedor anirvan.mandal
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/anirvanmandal/tickertape-exporter
URL da Página de Ajuda https://github.com/anirvanmandal/tickertape-exporter/issues
Idiomas Suportados 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"
        }
    ]
}