HTMLtoCSV

Exports HTML tables to CSV spreadsheets.

O que é HTMLtoCSV?

HTMLtoCSV é uma extensão do Chrome desenvolvida por oldjamey, e sua principal característica é "Exports HTML tables to CSV spreadsheets.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão HTMLtoCSV

Baixe arquivos de extensão HTMLtoCSV 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

                        A handy extension that scrapes HTML tables from the current page and adds buttons to download each table as individual CSV spreadsheets. Simple 2-step process: on the web page with data that you want to export, click the ultraball. All tables will be extracted from the page along with download buttons to export as CSV.  Click the "Download as CSV" button to download the HTML table as a CSV spreadsheet.  Saves all column headers and as much formatting as is available for CSV-formatted spreadsheets.

If you need to get fancy with it and edit your spreadsheets before exporting, you may want to try "Instant Data Scraper" (no affiliation).  This extension is barebones, vanilla JavaScript without any extra bells and/or whistles, in order to make your workflow as streamlined as possible.                    

Informações Básicas da Extensão

Nome HTMLtoCSV HTMLtoCSV
ID cebninopfmnhginjlgfilofjgaakiock
URL Oficial https://chromewebstore.google.com/detail/htmltocsv/cebninopfmnhginjlgfilofjgaakiock
Descrição Exports HTML tables to CSV spreadsheets.
Tamanho do Arquivo 21.34 KB
Contagem de Instalações 257
Versão Atual 1.0
Última Atualização 2022-02-25
Data de Publicação 2022-02-24
Desenvolvedor oldjamey
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en,en-GB,en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "version": "1.0",
    "manifest_version": 3,
    "default_locale": "en",
    "icons": {
        "16": ".\/img\/16.png",
        "32": ".\/img\/32.png",
        "19": ".\/img\/19.png",
        "38": ".\/img\/38.png",
        "48": ".\/img\/48.png",
        "128": ".\/img\/128.png"
    },
    "background": {
        "service_worker": ".\/background.js"
    },
    "action": {
        "default_icon": {
            "16": ".\/img\/16.png",
            "19": ".\/img\/19.png",
            "38": ".\/img\/38.png",
            "48": ".\/img\/48.png",
            "128": ".\/img\/128.png"
        }
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}