Table to CSV/JSON

Converts HTML tables in the page into csv or json

Table to CSV/JSONคืออะไร?

Table to CSV/JSON เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://codex10.com และคุณลักษณะหลักของมันคือ "Converts HTML tables in the page into csv or json"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Table to CSV/JSON

ดาวน์โหลดไฟล์ส่วนขยาย 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
}