Table to CSV/JSON

Converts HTML tables in the page into csv or json

Apa itu Table to CSV/JSON?

Table to CSV/JSON adalah ekstensi Chrome yang dikembangkan oleh http://codex10.com, dan fitur utamanya adalah "Converts HTML tables in the page into csv or json".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Table to CSV/JSON

Unduh file ekstensi Table to CSV/JSON dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Note the JSON is a simple Array> format.                    

Informasi Dasar Ekstensi

Nama Table to CSV/JSON Table to CSV/JSON
ID lcmljkenflafolafllblkbchomcnaefi
URL Resmi https://chrome.google.com/webstore/detail/table-to-csvjson/lcmljkenflafolafllblkbchomcnaefi
Deskripsi Converts HTML tables in the page into csv or json
Ukuran File 25.68 KB
Jumlah Instalasi 1,000
Versi Saat Ini 1.0.2
Terakhir Diperbarui 2015-07-05
Tanggal Publikasi 2015-07-05
Penilaian 2.82/5 Total 11 Penilaian
Pengembang http://codex10.com
Tipe Pembayaran free
Situs Ekstensi http://codex10.com
Bahasa yang Didukung 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
}