AutoFocus Cursor

Automatically set the focus to a search text box when the page loads

Что такое AutoFocus Cursor?

AutoFocus Cursor - это расширение Chrome, разработанное https://diamondium.com, и его основная функция - "Automatically set the focus to a search text box when the page loads".

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

screenshot

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

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

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

                        You no longer have to manually click a text box before searching!

Useful on websites where searching is the first thing you want to do (ex. Amazon).

Your cursor will automatically be placed in the first visible text box once the website loads.                    

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

Название AutoFocus Cursor AutoFocus Cursor
ID jbhglhmfhghlfdbbcpbihelgbnigggha
Официальный URL https://chromewebstore.google.com/detail/autofocus-cursor/jbhglhmfhghlfdbbcpbihelgbnigggha
Описание Automatically set the focus to a search text box when the page loads
Размер файла 62.14 KB
Количество установок 442
Текущая Версия 2.02
Последнее Обновление 2020-07-25
Дата публикации 2020-06-20
Рейтинг 3.78/5 Всего 9 оценок
Разработчик https://diamondium.com
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AutoFocus Cursor",
    "description": "Automatically set the focus to a search text box when the page loads",
    "permissions": [
        "storage",
        "tabs"
    ],
    "version": "2.02",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/auto-focus-min.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_popup": "autofocuscursor-settings.html"
    }
}