Mr. Table (by TYO lab)

Export table(s) in the web pages into downloadable CSV, JSON file(s)

Mr. Table (by TYO lab)คืออะไร?

Mr. Table (by TYO lab) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย TYO Lab และคุณลักษณะหลักของมันคือ "Export table(s) in the web pages into downloadable CSV, JSON file(s)"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mr. Table (by TYO lab)

ดาวน์โหลดไฟล์ส่วนขยาย Mr. Table (by TYO lab) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        In short, Mr. Table is a tool that can help extract data from table(s) (e.g. *
) of the web pages, and the extracted data can be saved into either "csv" or "json" format. We often have needs to collect data from the Internet for our work or our study, however, data presented in the web pages are often not in the format that we want. For example, most data in the web pages are presented using HTML tag '
' or '
', but we want data can be processed by our programs or our tools (e.g. Excel). With "Mr. Table", data can be converted from what you can see from the web pages to the format that we can actually use. Data often is presented using HTML table and related tags in the following ways: - for the table - for the table column names - for the table header row - for the actual data - for a data row -
for the table header cell -
for a data cell For those data you can simply using the default settings with preset table selector, column selector, cell selector, etc. Data also often is presented using CSS, and data is grouped in
tags and styled with CSS classes, for Example:
  1. #
    ID
    Name
    Age
    ...
  2. 1
    John Doe
    23
    ...
  3. 1
    John Smith
    37
    ...
  4. ...
Unfortunately, for such tables you can only extract them by specify the selectors manually. We can work on a smart way to extract data from such tables if we can get more support.

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Mr. Table (by TYO lab) Mr. Table (by TYO lab)
ID lkpbjlipbgmdmbamoojnfakndomaicdm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/mr-table-by-tyo-lab/lkpbjlipbgmdmbamoojnfakndomaicdm
คำอธิบาย Export table(s) in the web pages into downloadable CSV, JSON file(s)
ขนาดไฟล์ 653 KB
จำนวนการติดตั้ง 65
เวอร์ชันปัจจุบัน 0.0.2
อัปเดตครั้งล่าสุด 2022-03-19
วันที่เผยแพร่ 2020-07-02
ผู้พัฒนา TYO Lab
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://tyo.com.au
URL หน้านโยบายความเป็นส่วนตัว http://tyo.com.au/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mr. Table (by TYO lab)",
    "description": "Export table(s) in the web pages into downloadable CSV, JSON file(s)",
    "version": "0.0.2",
    "icons": {
        "16": "images\/favicon-16x16.png",
        "32": "images\/favicon-32x32.png",
        "96": "images\/favicon-96x96.png",
        "128": "images\/favicon-128x128.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "scripts\/dummy.js",
                "scripts\/jquery.min.js",
                "scripts\/te.js",
                "scripts\/data-export.js",
                "scripts\/content.js"
            ],
            "all_frames": true
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "page_action": {
        "default_title": "Mr. Table (by TYO lab)",
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}