Justifier

Justify a web page in one click

什么是Justifier?

Justifier是由Eoin Groat开发的Chrome扩展程序,该扩展的主要功能是“Justify a web page in one click”。

下载Justifier扩展crx文件

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

扩展使用说明

                        At the click of a button justify all the paragraphs on the page.

Clicking again will undo it.                    

扩展基本信息

名称 Justifier Justifier
ID kcmecpomccpjalahlhcmhogifppbbkoi
官方URL https://chromewebstore.google.com/detail/justifier/kcmecpomccpjalahlhcmhogifppbbkoi
简介 Justify a web page in one click
文件大小 8.61 KB
安装次数 65
当前版本 1.1
更新时间 2016-03-24
上架时间 2016-03-24
评分 5.00/5 共2次评分
开发者 Eoin Groat
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "1.1",
    "icons": {
        "128": "justified.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "browser_action": [],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "web_accessible_resources": [
        "style.css"
    ]
}