Table to CSV/JSON

Converts HTML tables in the page into csv or json

Table to CSV/JSON là gì?

Table to CSV/JSON là một tiện ích mở rộng Chrome được phát triển bởi http://codex10.com, và tính năng chính của nó là "Converts HTML tables in the page into csv or json".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Table to CSV/JSON

Tải xuống các tệp mở rộng Table to CSV/JSON dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Note the JSON is a simple Array> format.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Table to CSV/JSON Table to CSV/JSON
ID lcmljkenflafolafllblkbchomcnaefi
URL Chính Thức https://chrome.google.com/webstore/detail/table-to-csvjson/lcmljkenflafolafllblkbchomcnaefi
Mô tả Converts HTML tables in the page into csv or json
Kích Thước Tệp 25.68 KB
Số Lần Cài Đặt 1,000
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2015-07-05
Ngày Phát Hành 2015-07-05
Đánh Giá 2.82/5 Tổng số 11 Đánh Giá
Nhà Phát Triển http://codex10.com
Loại Thanh Toán free
Trang Web Mở Rộng http://codex10.com
Ngôn Ngữ Được Hỗ Trợ 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
}