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 |
官方網址 | 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'" } |