Input Cursor Focus
Focuses cursor in first text input if none is focused.
什么是Input Cursor Focus?
Input Cursor Focus是由Krzysztof Wróbel开发的Chrome扩展程序,该扩展的主要功能是“Focuses cursor in first text input if none is focused.”。
扩展截图
下载Input Cursor Focus扩展crx文件
下载Input Cursor Focus扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Automatically focuses text input on websites allowing you to immediately write without using mouse. E.g. on Amazon.com cursor is focused on search text input.
扩展基本信息
名称 | Input Cursor Focus |
ID | hnhplmcglkomfmoapojflionoibodhla |
官方URL | https://chromewebstore.google.com/detail/input-cursor-focus/hnhplmcglkomfmoapojflionoibodhla |
简介 | Focuses cursor in first text input if none is focused. |
文件大小 | 20.78 KB |
安装次数 | 1,864 |
当前版本 | 0.1.2 |
更新时间 | 2012-08-21 |
上架时间 | 2012-08-21 |
评分 | 4.08/5 共24次评分 |
开发者 | Krzysztof Wróbel |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Input Cursor Focus", "version": "0.1.2", "manifest_version": 2, "description": "Focuses cursor in first text input if none is focused.", "icons": { "128": "icon.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "inj.js" ] } ], "background": { "scripts": [ "bg.js" ] }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |