Download table as CSV
Download HTML tables in MS Excel style CSV format.
Download table as CSVคืออะไร?
Download table as CSV เป็นส่วนขยายของ Chrome ที่พัฒนาโดย arktiv และคุณลักษณะหลักของมันคือ "Download HTML tables in MS Excel style CSV format."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Download table as CSV
ดาวน์โหลดไฟล์ส่วนขยาย Download table as CSV ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Simple to use! Right click on the table, then select 'Download table as CSV' from the context menu. Alternatively you can click the icon and then click on the table to download The extension downloads the HTML tables in MS Excel style CSV format. Images will be show in the CSV file as the source URL. Inputs and text-areas will be indicated in the CSV file with a '(i)' Support for UTF-8 with BOM (Special thanks to mantaroh) - You can toggle this in the extensions popup. Note: Sometimes special characters, symbols will not look as you might expect, this is not a bug, rather a limitation of the format. Attempts to follow RFC4180 Source code: https://github.com/arktiv/table-csv-chrome
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Download table as CSV |
ID | jgeonblahchgiadgojdjilffklaihalj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/download-table-as-csv/jgeonblahchgiadgojdjilffklaihalj |
คำอธิบาย | Download HTML tables in MS Excel style CSV format. |
ขนาดไฟล์ | 8.34 KB |
จำนวนการติดตั้ง | 20,000 |
เวอร์ชันปัจจุบัน | 1.6 |
อัปเดตครั้งล่าสุด | 2023-11-27 |
วันที่เผยแพร่ | 2020-05-30 |
คะแนน | 4.33/5 รวมทั้งหมด 39 คะแนน |
ผู้พัฒนา | arktiv |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/arktiv/table-csv-chrome |
URL หน้าช่วยเหลือ | https://github.com/arktiv/table-csv-chrome |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Download table as CSV", "description": "Download HTML tables in MS Excel style CSV format.", "version": "1.6", "manifest_version": 2, "permissions": [ "contextMenus", "activeTab", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html" }, "icons": { "32": "icons\/32x32.png", "64": "icons\/64x64.png", "128": "icons\/128x128.png" } } |