Text into Multiple Columns
Reformats selected text to use columns of a more readable width.
什麼是Text into Multiple Columns?
Text into Multiple Columns是由dharris開發的Chrome擴展程式,該擴展的主要功能是“Reformats selected text to use columns of a more readable width.”。
擴展截圖
下載Text into Multiple Columns擴展crx文件
下載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 |
官方網址 | 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." } } |