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によって開発されたChromeの拡張機能で、その主な機能は「Adds a shortcut that focuses the cursor on the first text input.」です。
拡張機能のスクリーンショット
Focus on first input (keyboard shortcut)拡張機能のCRXファイルをダウンロード
Focus on first input (keyboard shortcut)拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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) |
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 |
Eメール | [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'" } |