Table to CSV/JSON

Converts HTML tables in the page into csv or json

Vad är Table to CSV/JSON?

Table to CSV/JSON är en Chrome-tillägg utvecklad av http://codex10.com, och dess huvudfunktion är "Converts HTML tables in the page into csv or json".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Table to CSV/JSON-förlängningens CRX-fil

Ladda ner Table to CSV/JSON-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Note the JSON is a simple Array> format.                    

Grundläggande Information om Tillägg

Namn Table to CSV/JSON Table to CSV/JSON
ID lcmljkenflafolafllblkbchomcnaefi
Officiell webbadress https://chrome.google.com/webstore/detail/table-to-csvjson/lcmljkenflafolafllblkbchomcnaefi
Beskrivning Converts HTML tables in the page into csv or json
Filstorlek 25.68 KB
Antal Installationer 1,000
Aktuell Version 1.0.2
Senast Uppdaterad 2015-07-05
Publiceringsdatum 2015-07-05
Betyg 2.82/5 Totalt 11 Betyg
Utvecklare http://codex10.com
Betalningssätt free
Tilläggswebbplats http://codex10.com
Stödda Språk 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
}