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 into lines of a more readable line length. The text is kept in the context of the page -- with images, logos, etc. Click on a paragraph or select text and then click the icon to split the text.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Text into Multiple Columns |
ID | dhhbngmbgcjkdfmdnbjpocafoednnhfj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/text-into-multiple-column/dhhbngmbgcjkdfmdnbjpocafoednnhfj |
คำอธิบาย | Reformats selected text to use columns of a more readable width. |
ขนาดไฟล์ | 421 KB |
จำนวนการติดตั้ง | 192 |
เวอร์ชันปัจจุบัน | 0.9.4 |
อัปเดตครั้งล่าสุด | 2017-03-06 |
วันที่เผยแพร่ | 2017-03-06 |
คะแนน | 2.82/5 รวมทั้งหมด 11 คะแนน |
ผู้พัฒนา | dharris |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/dougharris/text-columns |
ภาษาที่รองรับ | 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." } } |