Table to CSV/JSON

Converts HTML tables in the page into csv or json

Wat is Table to CSV/JSON?

Table to CSV/JSON is een Chrome-extensie ontwikkeld door http://codex10.com, en de belangrijkste functie is "Converts HTML tables in the page into csv or json".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Table to CSV/JSON

Download Table to CSV/JSON-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Note the JSON is a simple Array> format.                    

Basisinformatie over de Extensie

Naam Table to CSV/JSON Table to CSV/JSON
ID lcmljkenflafolafllblkbchomcnaefi
Officiële URL https://chrome.google.com/webstore/detail/table-to-csvjson/lcmljkenflafolafllblkbchomcnaefi
Beschrijving Converts HTML tables in the page into csv or json
Bestandsgrootte 25.68 KB
Aantal Installaties 1,000
Huidige Versie 1.0.2
Laatst Bijgewerkt 2015-07-05
Publicatiedatum 2015-07-05
Beoordeling 2.82/5 Totaal 11 Beoordelingen
Ontwikkelaar http://codex10.com
Betalingswijze free
Extensiewebsite http://codex10.com
Ondersteunde Talen 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
}