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…

Co je Justify?

Justify je rozšíření Chrome vyvinuté Tom Kent, a jeho hlavní funkcí je „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…“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Justify

Stáhněte si soubory rozšíření Justify ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název Justify Justify
ID odkfbmljaomnibofnefflonfehhbhnoo
Oficiální URL https://chromewebstore.google.com/detail/justify/odkfbmljaomnibofnefflonfehhbhnoo
Popis 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…
Velikost souboru 49.42 KB
Počet instalací 1,653
Aktuální Verze 0.1
Poslední Aktualizace 2016-04-23
Datum Vydání 2016-04-23
Hodnocení 4.18/5 Celkem 11 Hodnocení
Vývojář Tom Kent
Typ Platby free
Webové stránky Rozšíření http://justify.tomkent.me
URL Stránky Nápovědy http://justify.tomkent.me
Podporované Jazyky 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"
        }
    }
}