AutoFocus Pro

Automatically focus text boxes! Remembers your focus!

Что такое AutoFocus Pro?

AutoFocus Pro - это расширение Chrome, разработанное https://rubelet.x10.mx, и его основная функция - "Automatically focus text boxes! Remembers your focus!".

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

screenshot

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

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

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

                        This chrome extensions allows you to auto focus on page inputs without having to click!

To remember to focus on a text box, just hold CTRL+ALT and click once on the text box you want to focus on. When visiting the website again, you can instantly start typing!

You can check and edit the website focus in the options popup on the right side of the address bar. 

Your auto focus choices are synced with your email account so the app can remember your choices anywhere you go!                    

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

Название AutoFocus Pro AutoFocus Pro
ID ehlpbiljoppfbljcgkmjgenaolnlkccp
Официальный URL https://chromewebstore.google.com/detail/autofocus-pro/ehlpbiljoppfbljcgkmjgenaolnlkccp
Описание Automatically focus text boxes! Remembers your focus!
Размер файла 304 KB
Количество установок 322
Текущая Версия 1.1
Последнее Обновление 2013-05-23
Дата публикации 2013-05-23
Рейтинг 4.25/5 Всего 4 оценок
Разработчик https://rubelet.x10.mx
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AutoFocus Pro",
    "description": "Automatically focus text boxes! Remembers your focus!",
    "version": "1.1",
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "js\/jquery.js",
            "js\/events.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/jquery-ui.js",
                "bootstrap\/js\/bootstrap.min.js",
                "js\/getsearch.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "icon-19.png",
        "default_popup": "popup.html"
    }
}