AutoFocus Pro

Automatically focus text boxes! Remembers your focus!

Co to jest AutoFocus Pro?

AutoFocus Pro to rozszerzenie Chrome opracowane przez https://rubelet.x10.mx, a jego główną funkcją jest „Automatically focus text boxes! Remembers your focus!”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia AutoFocus Pro

Pobierz pliki rozszerzeń AutoFocus Pro w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa AutoFocus Pro AutoFocus Pro
ID ehlpbiljoppfbljcgkmjgenaolnlkccp
Oficjalny URL https://chromewebstore.google.com/detail/autofocus-pro/ehlpbiljoppfbljcgkmjgenaolnlkccp
Opis Automatically focus text boxes! Remembers your focus!
Rozmiar pliku 304 KB
Liczba instalacji 322
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2013-05-23
Data Publikacji 2013-05-23
Ocena 4.25/5 Łącznie 4 Oceny
Deweloper https://rubelet.x10.mx
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}