CSV Formatter
Format select data with header
CSV Formatterคืออะไร?
CSV Formatter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย zoujinhe และคุณลักษณะหลักของมันคือ "Format select data with header"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CSV Formatter
ดาวน์โหลดไฟล์ส่วนขยาย CSV Formatter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
v 0.0.3 + copy raw logs v 0.0.1 *** first version, not very intuitive to use *** How to use: - Define CSV headers in options page. - Select csv text on any webpage. - Right click on selected text, select "CSV Formatter", apply selected text with one of configured headers. - Click "CSV Formatter" plugin/extension icon to see formatted CSV showed in tables.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | CSV Formatter |
ID | enjmadekbjfjfifodfnjdljccjgpemcg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/csv-formatter/enjmadekbjfjfifodfnjdljccjgpemcg |
คำอธิบาย | Format select data with header |
ขนาดไฟล์ | 116 KB |
จำนวนการติดตั้ง | 95 |
เวอร์ชันปัจจุบัน | 0.0.3 |
อัปเดตครั้งล่าสุด | 2021-08-23 |
วันที่เผยแพร่ | 2021-08-11 |
ผู้พัฒนา | zoujinhe |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CSV Formatter", "description": "Format select data with header", "version": "0.0.3", "browser_action": { "default_popup": "index.html" }, "options_page": "options.html", "icons": { "16": "logo-small.png", "48": "logo-small.png", "128": "logo-small.png" }, "permissions": [ "contextMenus", "unlimitedStorage", "storage" ], "background": { "persistent": false, "scripts": [ "background.js" ] } } |