AutoFocus Pro

Automatically focus text boxes! Remembers your focus!

Co je AutoFocus Pro?

AutoFocus Pro je rozšíření Chrome vyvinuté https://rubelet.x10.mx, a jeho hlavní funkcí je „Automatically focus text boxes! Remembers your focus!“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření AutoFocus Pro

Stáhněte si soubory rozšíření AutoFocus Pro ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název AutoFocus Pro AutoFocus Pro
ID ehlpbiljoppfbljcgkmjgenaolnlkccp
Oficiální URL https://chromewebstore.google.com/detail/autofocus-pro/ehlpbiljoppfbljcgkmjgenaolnlkccp
Popis Automatically focus text boxes! Remembers your focus!
Velikost souboru 304 KB
Počet instalací 322
Aktuální Verze 1.1
Poslední Aktualizace 2013-05-23
Datum Vydání 2013-05-23
Hodnocení 4.25/5 Celkem 4 Hodnocení
Vývojář https://rubelet.x10.mx
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    }
}