Download table as CSV

Download HTML tables in MS Excel style CSV format.

O que é Download table as CSV?

Download table as CSV é uma extensão do Chrome desenvolvida por arktiv, e sua principal característica é "Download HTML tables in MS Excel style CSV format.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Download table as CSV

Baixe arquivos de extensão Download table as CSV 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

                        Simple to use! 

Right click on the table, then select 'Download table as CSV' from the context menu.

Alternatively you can click the icon and then click on the table to download

The extension downloads the HTML tables in MS Excel style CSV format. 

Images will be show in the CSV file as the source URL.
Inputs and text-areas will be indicated in the CSV file with a '(i)'

Support for UTF-8 with BOM (Special thanks to mantaroh) - You can toggle this in the extensions popup.

Note: Sometimes special characters, symbols will not look as you might expect, this is not a bug, rather a limitation of the format.

Attempts to follow RFC4180

Source code: https://github.com/arktiv/table-csv-chrome                    

Informações Básicas da Extensão

Nome Download table as CSV Download table as CSV
ID jgeonblahchgiadgojdjilffklaihalj
URL Oficial https://chromewebstore.google.com/detail/download-table-as-csv/jgeonblahchgiadgojdjilffklaihalj
Descrição Download HTML tables in MS Excel style CSV format.
Tamanho do Arquivo 8.34 KB
Contagem de Instalações 20,000
Versão Atual 1.6
Última Atualização 2023-11-27
Data de Publicação 2020-05-30
Classificação 4.33/5 Total de 39 Avaliações
Desenvolvedor arktiv
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/arktiv/table-csv-chrome
URL da Página de Ajuda https://github.com/arktiv/table-csv-chrome
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Download table as CSV",
    "description": "Download HTML tables in MS Excel style CSV format.",
    "version": "1.6",
    "manifest_version": 2,
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "32": "icons\/32x32.png",
        "64": "icons\/64x64.png",
        "128": "icons\/128x128.png"
    }
}