Focuser

Set the focus on search boxes without using the mouse

Τι είναι το Focuser;

Το Focuser είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον porkopek, και η κύρια λειτουργία του είναι "Set the focus on search boxes without using the mouse".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Focuser

Λήψη αρχείων επέκτασης Focuser σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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