Red Typography

Typography in text fields.

Что такое Red Typography?

Red Typography - это расширение Chrome, разработанное Denis Seleznev, и его основная функция - "Typography in text fields.".

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

screenshot
screenshot

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

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

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

                        Red Typography automatically helps to place non-breaking spaces, correct minor typos, allow the quotation marks to a correct format, replace the hyphens with dashes in the right places and much more.

The addition does not use third-party online services.
Based on https://github.com/typograf/typograf/                    

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

Название Red Typography Red Typography
ID dgmmkhdeghobfcedlnmgbncknnfjhnmo
Официальный URL https://chromewebstore.google.com/detail/red-typography/dgmmkhdeghobfcedlnmgbncknnfjhnmo
Описание Typography in text fields.
Размер файла 45.3 KB
Количество установок 591
Текущая Версия 1.4.0
Последнее Обновление 2023-05-09
Дата публикации 2019-03-08
Рейтинг 4.00/5 Всего 17 оценок
Разработчик Denis Seleznev
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/typograf/red-typography-webextension/
URL страницы помощи https://github.com/typograf/red-typography-webextension/issues
Поддерживаемые языки en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "__MSG_extensionDescription__",
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "version": "1.4.0",
    "default_locale": "en",
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "optional_host_permissions": [
        "*:\/\/*\/*"
    ],
    "commands": {
        "typograf-key": {
            "suggested_key": {
                "default": "Alt+Shift+T"
            },
            "description": "__MSG_commandShortcut__"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "popup\/browser.js",
                "content.js"
            ]
        }
    ],
    "action": {
        "browser_style": true,
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "icons\/16.png",
            "32": "icons\/32.png",
            "48": "icons\/48.png",
            "64": "icons\/64.png"
        }
    },
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "64": "icons\/64.png"
    }
}