Focus Search

Automatically focuses the search bar of websites and gives the user the option to manually focus on a search bar using CTRL + Space

Τι είναι το Focus Search;

Το Focus Search είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ben McLeod, και η κύρια λειτουργία του είναι "Automatically focuses the search bar of websites and gives the user the option to manually focus on a search bar using CTRL + Space".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Introducing Focus Search - a revolutionary browser extension that streamlines your web browsing experience by seamlessly selecting the search bar on any website. With this ingenious addon, there's no need to break your flow and reach for your mouse just to click on the search box - simply start typing right away with the convenience of your keyboard.

Not only does this cutting-edge extension improve accessibility for all websites with a search bar, it also elevates your browsing quality of life with its intuitive design and hassle-free functionality. Say goodbye to tedious clicking and hello to a more efficient browsing experience with Focus Search.

The best bit? It works automatically! Simply add to your browser and watch it go!

Need to re-select the search box after clicking away? Just hit CTRL + SPACE and the addon will re-select the search box for you!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Focus Search Focus Search
ID obpjnhenhageebpgaaidbokphnniilji
Επίσημο URL https://chromewebstore.google.com/detail/focus-search/obpjnhenhageebpgaaidbokphnniilji
Περιγραφή Automatically focuses the search bar of websites and gives the user the option to manually focus on a search bar using CTRL + Space
Μέγεθος Αρχείου 240 KB
Αριθμός Εγκαταστάσεων 53
Τρέχουσα Έκδοση 1.7
Τελευταία Ενημέρωση 2023-11-15
Ημερομηνία Δημοσίευσης 2023-04-06
Αξιολόγηση 5.00/5 Συνολικά 8 Αξιολογήσεις
Προγραμματιστής Ben McLeod
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://fs.ben-mcleod.com/
Διεύθυνση URL της Σελίδας Βοήθειας https://fs.ben-mcleod.com/
Υποστηριζόμενες Γλώσσες en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Focus Search",
    "version": "1.7",
    "description": "Automatically focuses the search bar of websites and gives the user the option to manually focus on a search bar using CTRL + Space",
    "icons": {
        "16": "img\/small.png",
        "48": "img\/medium.png",
        "128": "img\/large.png"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "img\/small.png",
            "48": "img\/medium.png",
            "128": "img\/large.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ]
}