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 - это расширение Chrome, разработанное Tom Kent, и его основная функция - "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

Скачать файл CRX расширения Justify

Скачайте файлы расширений 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
Официальный 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"
        }
    }
}