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) https://mikesglitch.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a shortcut that focuses the cursor on the first text input."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Focus on first input (keyboard shortcut) एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ URL 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'"
}