45to75

Character counter for helping to optimize line length (measure) between 45 and 75 characters.

Что такое 45to75?

45to75 - это расширение Chrome, разработанное abbwebdev, и его основная функция - "Character counter for helping to optimize line length (measure) between 45 and 75 characters.".

Снимки экрана расширения

screenshot

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

Скачайте файлы расширений 45to75 в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Helps designers and developers ensure that text line lengths (measure) meet their standards.

Each font and layout is unique, so it's up to the author to decide what measure works for their current situation, however a good "rule of thumb" is to keep the measure between 45 and 75 characters.

This will ensure your text stays readable across the various situations in which it could be read.

Highlight some text, right click, and view the character count right in the tooltip.                    

Основная информация о расширении

Название 45to75 45to75
ID efmppndinjbljeellfdkpghgblenbcdd
Официальный URL https://chromewebstore.google.com/detail/45to75/efmppndinjbljeellfdkpghgblenbcdd
Описание Character counter for helping to optimize line length (measure) between 45 and 75 characters.
Размер файла 5.22 KB
Количество установок 1,940
Текущая Версия 0.0.3
Последнее Обновление 2014-08-22
Дата публикации 2014-08-22
Рейтинг 4.67/5 Всего 6 оценок
Разработчик abbwebdev
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/content_script.js"
            ]
        }
    ]
}