Focus Search Bar

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

Что такое Focus Search Bar?

Focus Search Bar - это расширение Chrome, разработанное Sey, и его основная функция - "Focus Search Bar extension will focus the search bar element on a website after pressing the keyboard shortcut CTRL + SPACE.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Focus Search Bar

Скачайте файлы расширений Focus Search Bar в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Focus Search Bar Focus Search Bar
ID abhaecacnlenkgboaadpnbllghjdfiik
Официальный URL https://chromewebstore.google.com/detail/focus-search-bar/abhaecacnlenkgboaadpnbllghjdfiik
Описание Focus Search Bar extension will focus the search bar element on a website after pressing the keyboard shortcut CTRL + SPACE.
Размер файла 29.8 KB
Количество установок 193
Текущая Версия 1.0.7
Последнее Обновление 2024-02-13
Дата публикации 2020-10-27
Рейтинг 4.33/5 Всего 3 оценок
Разработчик Sey
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
            ]
        }
    ]
}