Search Box Focus

Press Tab to quickly access the main search bar or search field of any website. No need to use your mouse! Autofocus available!

Search Box Focusคืออะไร?

Search Box Focus เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gignu และคุณลักษณะหลักของมันคือ "Press Tab to quickly access the main search bar or search field of any website. No need to use your mouse! Autofocus available!"

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

screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Search Box Focus ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        You hate taking your hand off the keyboard all the time only to access the search bar of the website you’re visiting?
You’d love to simply press Tab or a custom shortcut to focus the search field and start typing right away without ever using your mouse?
“Search Box Focus” solves exactly these problems. It also comes with an “Autofocus” feature which allows you to access the search bar automatically without pressing any shortcuts. Simply activate it for websites where you do a lot of searching like Amazon or online dictionaries. Whenever you load a website that has “Autofocus” enabled or when you switch to it from another tab, you’ll find that the cursor is already in the search bar ready for you to start typing. 
The extension is completely free and open-source which means, no tracking or data collection. No ads!
After installation, make sure to reload/refresh all open tabs before using the extension!
Feel free to suggest new features, report bugs, and so on at:
https://github.com/gignupg/Search-Box-Focus

Credits: 
“Search Box Focus” mainly uses the search box detection code of this Github repository:
https://github.com/CodeRevver/Focus-First-Input 
The extension icon can be found at:
https://icons8.com/icon/48167/google-web-search                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Search Box Focus Search Box Focus
ID amgmdnojamodmpfjaokfgpijhpcednjm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/search-box-focus/amgmdnojamodmpfjaokfgpijhpcednjm
คำอธิบาย Press Tab to quickly access the main search bar or search field of any website. No need to use your mouse! Autofocus available!
ขนาดไฟล์ 989 KB
จำนวนการติดตั้ง 1,000
เวอร์ชันปัจจุบัน 0.4.0
อัปเดตครั้งล่าสุด 2023-12-30
วันที่เผยแพร่ 2021-01-29
คะแนน 4.84/5 รวมทั้งหมด 19 คะแนน
ผู้พัฒนา gignu
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/gignupg/Search-Box-Focus
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Search Box Focus",
    "version": "0.4.0",
    "manifest_version": 3,
    "description": "Press Tab to quickly access the main search bar or search field of any website. No need to use your mouse! Autofocus available!",
    "icons": {
        "16": "icons\/icons8-google-web-search-16.png",
        "48": "icons\/icons8-google-web-search-full-48.png",
        "128": "icons\/icons8-google-web-search-128.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "icons\/icons8-google-web-search-16.png",
            "48": "icons\/icons8-google-web-search-48.png",
            "128": "icons\/icons8-google-web-search-128.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "focus-search-bar": {
            "suggested_key": {
                "default": "Alt+S"
            },
            "description": "Search Box Focus"
        }
    },
    "content_security_policy": {
        "script-src": "self",
        "object-src": "self"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/images\/icon.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}