Focuser

Set the focus on search boxes without using the mouse

Vad är Focuser?

Focuser är en Chrome-tillägg utvecklad av porkopek, och dess huvudfunktion är "Set the focus on search boxes without using the mouse".

Tilläggsskärmbilder

screenshot

Ladda ner Focuser-förlängningens CRX-fil

Ladda ner Focuser-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        (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.                    

Grundläggande Information om Tillägg

Namn Focuser Focuser
ID mnnhidokencgjcgojhfgcjeeldjhncmb
Officiell webbadress https://chromewebstore.google.com/detail/focuser/mnnhidokencgjcgojhfgcjeeldjhncmb
Beskrivning Set the focus on search boxes without using the mouse
Filstorlek 6.56 KB
Antal Installationer 147
Aktuell Version 2.0.0.0
Senast Uppdaterad 2021-10-08
Publiceringsdatum 2017-11-10
Betyg 4.80/5 Totalt 5 Betyg
Utvecklare porkopek
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/porkopek/Focuser
Hjälpsida URL https://github.com/porkopek/Focuser/blob/master/README.md
Stödda Språk 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"
            ]
        }
    ]
}