Touch Keyboard

Keyboard for mobile or any other touch screen devices. It is inspired on Android usability.

Что такое Touch Keyboard?

Touch Keyboard - это расширение Chrome, разработанное SuperUber, и его основная функция - "Keyboard for mobile or any other touch screen devices. It is inspired on Android usability.".

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

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

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

                        Keyboard for touch screen device focused on login popup from Facebook.                    

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

Название Touch Keyboard Touch Keyboard
ID ljjpdjbpbgcfnjnebpknijaimhokfglg
Официальный URL https://chrome.google.com/webstore/detail/touch-keyboard/ljjpdjbpbgcfnjnebpknijaimhokfglg
Описание Keyboard for mobile or any other touch screen devices. It is inspired on Android usability.
Размер файла 40 KB
Количество установок 90
Текущая Версия 1.1
Последнее Обновление 2015-03-09
Дата публикации 2015-03-09
Рейтинг 5.00/5 Всего 2 оценок
Разработчик SuperUber
Тип оплаты free
Официальный сайт расширения http://www.superuber.com
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Touch Keyboard",
    "description": "Keyboard for mobile or any other touch screen devices. It is inspired on Android usability.",
    "version": "1.1",
    "permissions": [
        "tabs",
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "keyboard.html",
        "style.css",
        "images\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "script.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "manifest_version": 2
}