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是由Ben McLeod开发的Chrome扩展程序,该扩展的主要功能是“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

下载Focus Search扩展crx文件

下载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"
        }
    ]
}