AutoFocus Pro

Automatically focus text boxes! Remembers your focus!

Hvad er AutoFocus Pro?

AutoFocus Pro er en Chrome-udvidelse udviklet af https://rubelet.x10.mx, og dens hovedfunktion er "Automatically focus text boxes! Remembers your focus!".

Udvidelsesskærmbilleder

screenshot

Download AutoFocus Pro-udvidelses-CRX-fil

Download AutoFocus Pro-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn AutoFocus Pro AutoFocus Pro
ID ehlpbiljoppfbljcgkmjgenaolnlkccp
Officiel URL https://chromewebstore.google.com/detail/autofocus-pro/ehlpbiljoppfbljcgkmjgenaolnlkccp
Beskrivelse Automatically focus text boxes! Remembers your focus!
Filstørrelse 304 KB
Antal Installationer 322
Nuværende Version 1.1
Senest Opdateret 2013-05-23
Udgivelsesdato 2013-05-23
Bedømmelse 4.25/5 Samlet 4 Bedømmelser
Udvikler https://rubelet.x10.mx
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    }
}