Justify

Justify makes text easier to read in just one click! If you're used to reading justified text in academic journals, it can often be…

什么是Justify?

Justify是由Tom Kent开发的Chrome扩展程序,该扩展的主要功能是“Justify makes text easier to read in just one click! If you're used to reading justified text in academic journals, it can often be…”。

扩展截图

screenshot
screenshot
screenshot

下载Justify扩展crx文件

下载Justify扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Justify makes text easier to read in just one click! If you're used to reading justified text in academic journals, it can often be difficult to adjust to non-justified text seen on many websites. This extension allows you to immediately justify all text either by clicking the icon or through the keyboard shortcut (Ctrl + Shift + J on Windows and Cmd + Shift + J on Mac). You can reverse the justification as easily as you enabled it by hitting the keyboard shortcut again or clicking the extension icon!                    

扩展基本信息

名称 Justify Justify
ID odkfbmljaomnibofnefflonfehhbhnoo
官方URL https://chromewebstore.google.com/detail/justify/odkfbmljaomnibofnefflonfehhbhnoo
简介 Justify makes text easier to read in just one click! If you're used to reading justified text in academic journals, it can often be…
文件大小 49.42 KB
安装次数 1,653
当前版本 0.1
更新时间 2016-04-23
上架时间 2016-04-23
评分 4.18/5 共11次评分
开发者 Tom Kent
付费类型 free
扩展官网 http://justify.tomkent.me
帮助页面URL http://justify.tomkent.me
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Justify",
    "version": "0.1",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-2.2.3.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon_justified.png",
        "default_title": "Justify!"
    },
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "commands": {
        "justify": {
            "suggested_key": {
                "default": "Ctrl+Shift+J",
                "mac": "Command+Shift+J"
            },
            "description": "Justify All Text"
        }
    }
}