SO Chat Easy Input Tools

Adds keyboard shortcuts to the SE Chats

Что такое SO Chat Easy Input Tools?

SO Chat Easy Input Tools - это расширение Chrome, разработанное rlemon, и его основная функция - "Adds keyboard shortcuts to the SE Chats".

Скачать файл CRX расширения SO Chat Easy Input Tools

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

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

                        Provides keyboard shortcuts for common text formatting commands, reducing the dependency on mouse usage. Current version does not have a configurable set of hotkeys but later versions will.  
How to use.

All of the following commands are run if the user has focus in the chat input area.

ALT + A inserts a link.
ALT + T inserts a site-tag.
ALT + B formats text to bold.
ALT + I formats text to italics.
ALT + S formats text to strike-through.
ALT + C formats text to code.
ALT + E formats text to emote.                    

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

Название SO Chat Easy Input Tools SO Chat Easy Input Tools
ID pnbhechmjmooppggjdlpemnagilclbcn
Официальный URL https://chrome.google.com/webstore/detail/so-chat-easy-input-tools/pnbhechmjmooppggjdlpemnagilclbcn
Описание Adds keyboard shortcuts to the SE Chats
Размер файла 8.88 KB
Количество установок 34
Текущая Версия 0.0.0.3
Последнее Обновление 2014-10-13
Дата публикации 2014-10-13
Рейтинг 5.00/5 Всего 5 оценок
Разработчик rlemon
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SO Chat Easy Input Tools",
    "description": "Adds keyboard shortcuts to the SE Chats",
    "version": "0.0.0.3",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/chat.stackoverflow.com\/*",
                "http:\/\/chat.stackexchange.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "icons": {
        "128": "icon_128.png"
    }
}