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
官方網址 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"
        }
    }
}