Auto Cursor

A productivity tool to automatically select the first visible text input.

Что такое Auto Cursor?

Auto Cursor - это расширение Chrome, разработанное spyrosoft, и его основная функция - "A productivity tool to automatically select the first visible text input.".

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

screenshot

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

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

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

                        Do you ever feel annoyed because you have to click in a username or search text field? The cursor should have been placed there automatically. This extension aims to solve that problem.                    

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

Название Auto Cursor Auto Cursor
ID gjaabiillfmidpcknchjeiadoppocmaf
Официальный URL https://chrome.google.com/webstore/detail/auto-cursor/gjaabiillfmidpcknchjeiadoppocmaf
Описание A productivity tool to automatically select the first visible text input.
Размер файла 7.38 KB
Количество установок 115
Текущая Версия 1.0
Последнее Обновление 2015-10-20
Дата публикации 2015-10-20
Рейтинг 5.00/5 Всего 1 оценок
Разработчик spyrosoft
Тип оплаты free
URL страницы помощи http://spyrosoft.com/contact
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Cursor",
    "description": "A productivity tool to automatically select the first visible text input.",
    "version": "1.0",
    "icons": {
        "128": "auto-cursor-128.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "auto-cursor.js"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2
}