Focus Search Bar Shortcut

Focus search bar using a shortcut, it works on any page. It's that simple.

Focus Search Bar Shortcutとは何ですか?

Focus Search Bar ShortcutはAlaa Awartaniによって開発されたChromeの拡張機能で、その主な機能は「Focus search bar using a shortcut, it works on any page. It's that simple.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Focus Search Bar Shortcut拡張機能のCRXファイルをダウンロード

Focus Search Bar Shortcut拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Who is this for?
If your hands are busy with the keyboard and you don't want to use the mouse to click the search bar, then you can use this extension to select the search bar for you.

How to use?
When on a page, press the shortcut (default is Alt + Space) to select the main search bar.

Options?
- Adjust shortcut binding.
- Turn on selecting search bar text after focusing it.
- Turn on the ability to always focus search bar when you open any new website homepage.

How does it work?
Focus Search Bar analyses page content and detects the main and visible search bar then focus it for you.
No user data tracking or sending, no ads as well.

Enjoy searching!                    

拡張機能の基本情報

名前 Focus Search Bar Shortcut Focus Search Bar Shortcut
ID jdnofeiincnnglkkkdaicdplgjemihif
公式URL https://chrome.google.com/webstore/detail/focus-search-bar-shortcut/jdnofeiincnnglkkkdaicdplgjemihif
説明 Focus search bar using a shortcut, it works on any page. It's that simple.
ファイルサイズ 43.46 KB
インストール数 85
現在のバージョン 1.1
最終更新日 2019-09-10
公開日 2019-09-10
評価 3.67/5 合計 3 レビュー
開発者 Alaa Awartani
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Focus Search Bar Shortcut",
    "short_name": "Focus Search",
    "version": "1.1",
    "description": "Focus search bar using a shortcut, it works on any page. It's that simple.",
    "author": "Alaa Awartani",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage",
        ""
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "dist\/background.js"
        ]
    },
    "browser_action": {
        "default_title": "Focus Search Bar Shortcut",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/focus_search_16.png",
            "32": "images\/focus_search_32.png",
            "48": "images\/focus_search_48.png",
            "128": "images\/focus_search_128.png"
        }
    },
    "commands": {
        "FOCUS": {
            "suggested_key": {
                "default": "Alt+Space"
            },
            "description": "Focus search bar shortcut."
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "dist\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "manifest_version": 2,
    "icons": {
        "16": "images\/focus_search_16.png",
        "32": "images\/focus_search_32.png",
        "48": "images\/focus_search_48.png",
        "128": "images\/focus_search_128.png"
    }
}