Focuser

Set the focus on search boxes without using the mouse

Focuser क्या है?

Focuser porkopek द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Set the focus on search boxes without using the mouse"।

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

screenshot

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

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

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

                        (shortcut: Esc key)

Set the focus on search boxes without using the mouse. For those who love to be productive.

This extension grew out of my daily need, in my job as a Portuguese to Spanish translator, to focus the search fields on several sites without using the mouse.

When we want to be productive, having to leave the keyboard to grab the mouse and click on a search field can waste our time.
Therefore, this extension allows you to focus the search field by pressing the Esc key.

Very useful on sites like Google, Wikipedia, Linguee, etc.                    

एक्सटेंशन की मूल जानकारी

नाम Focuser Focuser
ID mnnhidokencgjcgojhfgcjeeldjhncmb
आधिकारिक URL https://chromewebstore.google.com/detail/focuser/mnnhidokencgjcgojhfgcjeeldjhncmb
विवरण Set the focus on search boxes without using the mouse
फ़ाइल का आकार 6.56 KB
स्थापना संख्या 147
वर्तमान संस्करण 2.0.0.0
अंतिम अपडेट 2021-10-08
प्रकाशन तिथि 2017-11-10
रेटिंग 4.80/5 कुल 5 रेटिंग्स
डेवलपर porkopek
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/porkopek/Focuser
सहायता पृष्ठ URL https://github.com/porkopek/Focuser/blob/master/README.md
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Focuser",
    "short_name": "Focuser",
    "version": "2.0.0.0",
    "description": "Set the focus on search boxes without using the mouse",
    "icons": {
        "64": "search.png",
        "32": "search32.png",
        "128": "search128.png"
    },
    "browser_action": {
        "default_icon": "search128.png",
        "default_popup": "popup.html",
        "default_title": "Focus search boxes"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "index.js"
            ]
        }
    ]
}