Table to CSV/JSON

Converts HTML tables in the page into csv or json

O que é Table to CSV/JSON?

Table to CSV/JSON é uma extensão do Chrome desenvolvida por http://codex10.com, e sua principal característica é "Converts HTML tables in the page into csv or json".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Table to CSV/JSON

Baixe arquivos de extensão Table to CSV/JSON 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

                        Right click on an HTML TABLE, choose CSV/JSON, and get the plain text version.

Note the JSON is a simple Array> format.                    

Informações Básicas da Extensão

Nome Table to CSV/JSON Table to CSV/JSON
ID lcmljkenflafolafllblkbchomcnaefi
URL Oficial https://chrome.google.com/webstore/detail/table-to-csvjson/lcmljkenflafolafllblkbchomcnaefi
Descrição Converts HTML tables in the page into csv or json
Tamanho do Arquivo 25.68 KB
Contagem de Instalações 1,000
Versão Atual 1.0.2
Última Atualização 2015-07-05
Data de Publicação 2015-07-05
Classificação 2.82/5 Total de 11 Avaliações
Desenvolvedor http://codex10.com
Tipo de Pagamento free
Site da Extensão http://codex10.com
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Table to CSV\/JSON",
    "short_name": "HTMLTableConverter",
    "version": "1.0.2",
    "author": "Codex10",
    "description": "Converts HTML tables in the page into csv or json",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/lodash.min.js",
                "js\/index.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "declarativeContent",
        "contextMenus"
    ],
    "homepage_url": "http:\/\/codex10.com",
    "icons": {
        "48": "assets\/icons\/icon-48.png",
        "128": "assets\/icons\/icon-128.png"
    },
    "web_accessible_resources": [
        "js\/blank.js"
    ],
    "manifest_version": 2
}