Table to CSV/JSON

Converts HTML tables in the page into csv or json

Qu'est-ce que Table to CSV/JSON ?

Table to CSV/JSON est une extension Chrome développée par http://codex10.com, et sa fonction principale est "Converts HTML tables in the page into csv or json".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Table to CSV/JSON

Téléchargez les fichiers d'extension Table to CSV/JSON au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Note the JSON is a simple Array> format.                    

Informations de Base sur l'Extension

Nom Table to CSV/JSON Table to CSV/JSON
ID lcmljkenflafolafllblkbchomcnaefi
URL Officiel https://chrome.google.com/webstore/detail/table-to-csvjson/lcmljkenflafolafllblkbchomcnaefi
Description Converts HTML tables in the page into csv or json
Taille du Fichier 25.68 KB
Nombre d'Installations 1,000
Version Actuelle 1.0.2
Dernière Mise à Jour 2015-07-05
Date de Publication 2015-07-05
Évaluation 2.82/5 Total 11 Évaluations
Développeur http://codex10.com
Type de Paiement free
Site Web de l'Extension http://codex10.com
Langues Prises en Charge 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
}