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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alaa Awartani และคุณลักษณะหลักของมันคือ "Focus search bar using a shortcut, it works on any page. It's that simple."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Focus Search Bar Shortcut

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    }
}