Go Focus Self

Press Ctrl+Shift+1 (customizable) when on a webpage with a text box to focus the text box closest to the center of the screen.

Go Focus Selfคืออะไร?

Go Focus Self เป็นส่วนขยายของ Chrome ที่พัฒนาโดย em_te และคุณลักษณะหลักของมันคือ "Press Ctrl+Shift+1 (customizable) when on a webpage with a text box to focus the text box closest to the center of the screen."

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

screenshot
screenshot
screenshot

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

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

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

                        Why:
Many webpages require typing as the first thing you do. This includes entering your username to login or typing text to perform a search. Sometimes the webpage won't focus the main text box for the user, which means the user needs to click it with the mouse, which is an extra step.

Sometimes your hands are already on the keyboard ready to type and moving your hand back to the mouse to click and then move your hand back to the keyboard is simply too much work.

How:
With the extension, simply press Ctrl+Shift+1 to put the text cursor into the main input field on the webpage. As simple as that.

Features:
This extension is different than simply pressing Tab to move the focus to the webpage's form controls.

This extension has the following unique features:

- Only text boxes are focused, buttons and links are ignored.
- If multiple text boxes are present, the text box closest to the center of the screen is focused. This allows you to focus the login box instead of the search box.
- Only text boxes at the current scroll position are focused. This prevents focusing text boxes at the very top or very bottom of the page.
- If there is a password text box and a normal text box near each other, the password text box has less priority.
- If the webpage has a text box with the "autofocus" attribute, it is selected first.

Customization:
To customize the keyboard shortcut, click on the hamburger menu -> More tools -> Extensions -> click the left hamburger menu -> Keyboard shortcuts                    

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

ชื่อ Go Focus Self Go Focus Self
ID mnbcceelocmmeahnedmidelhpbapmfli
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/go-focus-self/mnbcceelocmmeahnedmidelhpbapmfli
คำอธิบาย Press Ctrl+Shift+1 (customizable) when on a webpage with a text box to focus the text box closest to the center of the screen.
ขนาดไฟล์ 14.01 KB
จำนวนการติดตั้ง 86
เวอร์ชันปัจจุบัน 0.2.1
อัปเดตครั้งล่าสุด 2021-02-09
วันที่เผยแพร่ 2019-09-09
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา em_te
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://em-te.github.io/privacy
ภาษาที่รองรับ en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "author": "Terry",
    "version": "0.2.1",
    "description": "__MSG_extensionDescription__",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "24": "icon_24.png",
        "48": "icon_48.png",
        "96": "icon_96.png"
    },
    "commands": {
        "focus-text-box": {
            "suggested_key": {
                "default": "Ctrl+Shift+1"
            },
            "description": "Focus the text box on the current webpage nearest the center of the screen."
        }
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}