table-to-spreadsheet

Convert the table element to spreadsheet

table-to-spreadsheetคืออะไร?

table-to-spreadsheet เป็นส่วนขยายของ Chrome ที่พัฒนาโดย moznion และคุณลักษณะหลักของมันคือ "Convert the table element to spreadsheet"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย table-to-spreadsheet

ดาวน์โหลดไฟล์ส่วนขยาย table-to-spreadsheet ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Provide the CSV or XLSX that is converted from the table element by context menu.                    

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

ชื่อ table-to-spreadsheet table-to-spreadsheet
ID haidhlbpihfihbjcggmffnmhgiddjcoc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/table-to-spreadsheet/haidhlbpihfihbjcggmffnmhgiddjcoc
คำอธิบาย Convert the table element to spreadsheet
ขนาดไฟล์ 105 KB
จำนวนการติดตั้ง 7,268
เวอร์ชันปัจจุบัน 0.0.2
อัปเดตครั้งล่าสุด 2014-07-22
วันที่เผยแพร่ 2014-07-22
คะแนน 4.00/5 รวมทั้งหมด 19 คะแนน
ผู้พัฒนา moznion
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/moznion/crx-table-to-spreadsheet
URL หน้าช่วยเหลือ https://github.com/moznion/crx-table-to-spreadsheet/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "table-to-spreadsheet",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "Convert the table element to spreadsheet",
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/main.js",
                "js\/XLSXSheet.js",
                "js\/CSVSheet.js",
                "js\/Converter.js",
                "vendor\/jquery.js",
                "vendor\/lodash.compat.js",
                "vendor\/xlsx.core.min.js",
                "vendor\/Blob.min.js",
                "vendor\/FileSaver.min.js",
                "vendor\/csv.js"
            ]
        }
    ]
}