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…

Qu'est-ce que Justify ?

Justify est une extension Chrome développée par Tom Kent, et sa fonction principale est "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…".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Justify

Téléchargez les fichiers d'extension Justify au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Justify Justify
ID odkfbmljaomnibofnefflonfehhbhnoo
URL Officiel https://chromewebstore.google.com/detail/justify/odkfbmljaomnibofnefflonfehhbhnoo
Description 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…
Taille du Fichier 49.42 KB
Nombre d'Installations 1,653
Version Actuelle 0.1
Dernière Mise à Jour 2016-04-23
Date de Publication 2016-04-23
Évaluation 4.18/5 Total 11 Évaluations
Développeur Tom Kent
Type de Paiement free
Site Web de l'Extension http://justify.tomkent.me
URL de la Page d'Aide http://justify.tomkent.me
Langues Prises en Charge 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"
        }
    }
}