Columnify
Turns page-width text into a more readable column.
什么是Columnify?
Columnify是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Turns page-width text into a more readable column.”。
扩展截图
下载Columnify扩展crx文件
下载Columnify扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
With just one keystroke, instantly transform a page with text that stretches across the entire screen into a manageable column for easier reading.
Ctrl+Shift+K to columnify.
Ctrl+Shift+L to decolumnify.
There are other apps that include this feature, but because they also include a lot of other stuff, they have a clunky interface and you end up doing a lot more work and seeing more needless popups than you need for a feature like this.
This is instant: boom, the page is a column. No forms to fill out, no passwords.
Please give any comments or suggestions! 扩展基本信息
| 名称 | |
| ID | jjfioppoojknlbcfncooglhiajcjpcde |
| 官方URL | https://chromewebstore.google.com/detail/columnify/jjfioppoojknlbcfncooglhiajcjpcde |
| 简介 | Turns page-width text into a more readable column. |
| 文件大小 | 318 KB |
| 安装次数 | 52 |
| 当前版本 | 0.0.0.2 |
| 更新时间 | 2014-09-24 |
| 上架时间 | 2014-09-23 |
| 评分 | 3.17/5 共6次评分 |
| 开发者 | Unknown |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Columnify",
"description": "Turns page-width text into a more readable column.",
"version": "0.0.0.2",
"manifest_version": 2,
"permissions": [
"activeTab"
],
"icons": {
"128": "icon128.png"
},
"background": {
"scripts": [
"background2.js"
],
"persistent": false
},
"commands": {
"columnify": {
"suggested_key": {
"default": "Ctrl+Shift+K"
},
"description": "Makes column."
},
"decolumnify": {
"suggested_key": {
"default": "Ctrl+Shift+L"
},
"description": "Undoes column."
}
}
} | |