Focus on first input (keyboard shortcut)

Adds a shortcut that focuses the cursor on the first text input.

ما هو Focus on first input (keyboard shortcut)؟

Focus on first input (keyboard shortcut) هو إضافة Chrome تم تطويرها بواسطة https://mikesglitch.com، والميزة الرئيسية لها هي "Adds a shortcut that focuses the cursor on the first text input.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Focus on first input (keyboard shortcut)

قم بتنزيل ملفات الامتداد Focus on first input (keyboard shortcut) بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        The default shortcut is 'Alt+S' - it is fully rebindable via the Chrome Extension shortcut menu (chrome://extensions/shortcuts).

To view the code you can visit my GitHub repository: https://github.com/mikesglitch/Focus-First-Input                    

معلومات أساسية عن التمديد

الاسم Focus on first input (keyboard shortcut) Focus on first input (keyboard shortcut)
ID ofngolgonfcpdanjehfjmcealkclchjg
عنوان URL الرسمي https://chromewebstore.google.com/detail/focus-on-first-input-keyb/ofngolgonfcpdanjehfjmcealkclchjg
الوصف Adds a shortcut that focuses the cursor on the first text input.
حجم الملف 5.38 KB
عدد التثبيتات 388
النسخة الحالية 0.1.8
آخر تحديث 2023-07-26
تاريخ النشر 2018-05-07
تقييم 4.64/5 مجموع تقييمات 11
المطور https://mikesglitch.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/mikesglitch/Focus-First-Input
عنوان صفحة المساعدة https://github.com/mikesglitch/Focus-First-Input
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Focus on first input (keyboard shortcut)",
    "version": "0.1.8",
    "manifest_version": 2,
    "description": "Adds a shortcut that focuses the cursor on the first text input.",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "inj.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "focus-first-input": {
            "suggested_key": {
                "default": "Alt+S"
            },
            "description": "Focus on the first input on the screen"
        }
    },
    "content_security_policy": "script-src 'self'; object-src 'self'"
}