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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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