Text into Multiple Columns
Reformats selected text to use columns of a more readable width.
Text into Multiple Columnsคืออะไร?
Text into Multiple Columns เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dharris และคุณลักษณะหลักของมันคือ "Reformats selected text to use columns of a more readable width."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Text into Multiple Columns
ดาวน์โหลดไฟล์ส่วนขยาย Text into Multiple Columns ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Reformats selected text to use columns of a more readable width. Studies suggest that it's easier and faster to read text if the text is presented in narrow columns. The growth of full width browsing on wide screen monitors plays directly against this. Add this extension to make it easy to reformat the text into something manageable.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Text into Multiple Columns |
ID | nhlhdcjekkcenhfdhohihhoocnkgbfeb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/text-into-multiple-column/nhlhdcjekkcenhfdhohihhoocnkgbfeb |
คำอธิบาย | Reformats selected text to use columns of a more readable width. |
ขนาดไฟล์ | 421 KB |
จำนวนการติดตั้ง | 149 |
เวอร์ชันปัจจุบัน | 0.9.4 |
อัปเดตครั้งล่าสุด | 2015-05-26 |
วันที่เผยแพร่ | 2015-05-26 |
คะแนน | 3.60/5 รวมทั้งหมด 10 คะแนน |
ผู้พัฒนา | dharris |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Text into Multiple Columns", "version": "0.9.4", "manifest_version": 2, "description": "Reformats selected text to use columns of a more readable width.", "content_scripts": [ { "all_frames": true, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "text-columns.js" ] } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "cols.png", "default_title": "Display selected text in multiple columns." } } |