Justifier

Justify a web page in one click

What is Justifier?

Justifier is a Chrome extension developed by Eoin Groat, and its main feature is "Justify a web page in one click".

Download Justifier Extension CRX File

Download Justifier extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Clicking again will undo it.                    

Extension Basic Information

Name Justifier Justifier
ID kcmecpomccpjalahlhcmhogifppbbkoi
Official URL https://chromewebstore.google.com/detail/justifier/kcmecpomccpjalahlhcmhogifppbbkoi
Description Justify a web page in one click
File Size 8.61 KB
Installation Count 65
Current Version 1.1
Last Updated 2016-03-24
Publish Date 2016-03-24
Rating 5.00/5 Total 2 Ratings
Developer Eoin Groat
Payment Type free
Supported Languages 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"
    ]
}