Table to CSV/JSON

Converts HTML tables in the page into csv or json

Cos'è Table to CSV/JSON?

Table to CSV/JSON è un'estensione di Chrome sviluppata da http://codex10.com, e la sua funzione principale è "Converts HTML tables in the page into csv or json".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Table to CSV/JSON

Scarica i file di estensione Table to CSV/JSON in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Note the JSON is a simple Array> format.                    

Informazioni di Base sull'Estensione

Nome Table to CSV/JSON Table to CSV/JSON
ID lcmljkenflafolafllblkbchomcnaefi
URL Ufficiale https://chrome.google.com/webstore/detail/table-to-csvjson/lcmljkenflafolafllblkbchomcnaefi
Descrizione Converts HTML tables in the page into csv or json
Dimensione del File 25.68 KB
Conteggio Installazioni 1,000
Versione Corrente 1.0.2
Ultimo Aggiornamento 2015-07-05
Data di Pubblicazione 2015-07-05
Valutazione 2.82/5 Totale 11 Valutazioni
Sviluppatore http://codex10.com
Tipo di Pagamento free
Sito Web dell'Estensione http://codex10.com
Lingue Supportate 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
}