Focus Search Bar

Focus Search Bar extension will focus the search bar element on a website after pressing the keyboard shortcut CTRL + SPACE.

Co to jest Focus Search Bar?

Focus Search Bar to rozszerzenie Chrome opracowane przez Sey, a jego główną funkcją jest „Focus Search Bar extension will focus the search bar element on a website after pressing the keyboard shortcut CTRL + SPACE.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Focus Search Bar

Pobierz pliki rozszerzeń Focus Search Bar w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This extention is used to increase productivity of the users by allowing them focus the cursor to the search bar on supported websites like youtube, facebook etc.                    

Podstawowe informacje o rozszerzeniu

Nazwa Focus Search Bar Focus Search Bar
ID abhaecacnlenkgboaadpnbllghjdfiik
Oficjalny URL https://chromewebstore.google.com/detail/focus-search-bar/abhaecacnlenkgboaadpnbllghjdfiik
Opis Focus Search Bar extension will focus the search bar element on a website after pressing the keyboard shortcut CTRL + SPACE.
Rozmiar pliku 29.8 KB
Liczba instalacji 193
Aktualna Wersja 1.0.7
Ostatnia Aktualizacja 2024-02-13
Data Publikacji 2020-10-27
Ocena 4.33/5 Łącznie 3 Oceny
Deweloper Sey
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Focus Search Bar",
    "description": "Focus Search Bar extension will focus the search bar element on a website after pressing the keyboard shortcut CTRL + SPACE.",
    "version": "1.0.7",
    "short_name": "FSB",
    "icons": {
        "16": "img\/icon\/icon16.png",
        "32": "img\/icon\/icon32.png",
        "48": "img\/icon\/icon48.png",
        "128": "img\/icon\/icon128.png"
    },
    "action": {
        "default_icon": {
            "16": "img\/icon\/icon16.png",
            "32": "img\/icon\/icon32.png",
            "48": "img\/icon\/icon48.png",
            "128": "img\/icon\/icon128.png"
        }
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ]
}