AutoFocus Pro

Automatically focus text boxes! Remembers your focus!

AutoFocus Pro क्या है?

AutoFocus Pro https://rubelet.x10.mx द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically focus text boxes! Remembers your focus!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में AutoFocus Pro एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    }
}