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 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." } } |