AutoFocus Pro

Automatically focus text boxes! Remembers your focus!

¿Qué es AutoFocus Pro?

AutoFocus Pro es una extensión de Chrome desarrollada por https://rubelet.x10.mx, y su función principal es "Automatically focus text boxes! Remembers your focus!".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión AutoFocus Pro

Descarga archivos de extensión AutoFocus Pro en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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!                    

Información Básica de la Extensión

Nombre AutoFocus Pro AutoFocus Pro
ID ehlpbiljoppfbljcgkmjgenaolnlkccp
URL Oficial https://chromewebstore.google.com/detail/autofocus-pro/ehlpbiljoppfbljcgkmjgenaolnlkccp
Descripción Automatically focus text boxes! Remembers your focus!
Tamaño del Archivo 304 KB
Cantidad de Instalaciones 322
Versión Actual 1.1
Última Actualización 2013-05-23
Fecha de Publicación 2013-05-23
Calificación 4.25/5 Total de 4 Calificaciones
Desarrollador https://rubelet.x10.mx
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    }
}