Table to CSV/JSON

Converts HTML tables in the page into csv or json

Table to CSV/JSONとは何ですか?

Table to CSV/JSONはhttp://codex10.comによって開発されたChromeの拡張機能で、その主な機能は「Converts HTML tables in the page into csv or json」です。

拡張機能のスクリーンショット

screenshot
screenshot

Table to CSV/JSON拡張機能のCRXファイルをダウンロード

Table to CSV/JSON拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

Note the JSON is a simple Array> format.                    

拡張機能の基本情報

名前 Table to CSV/JSON Table to CSV/JSON
ID lcmljkenflafolafllblkbchomcnaefi
公式URL https://chrome.google.com/webstore/detail/table-to-csvjson/lcmljkenflafolafllblkbchomcnaefi
説明 Converts HTML tables in the page into csv or json
ファイルサイズ 25.68 KB
インストール数 1,000
現在のバージョン 1.0.2
最終更新日 2015-07-05
公開日 2015-07-05
評価 2.82/5 合計 11 レビュー
開発者 http://codex10.com
支払い方法 free
拡張機能のウェブサイト http://codex10.com
対応言語 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
}