Vimkey
Use keyboard control browser jump, scroll, switch tab and more
什么是Vimkey?
Vimkey是由Haojen开发的Chrome扩展程序,该扩展的主要功能是“Use keyboard control browser jump, scroll, switch tab and more”。
扩展截图
下载Vimkey扩展crx文件
下载Vimkey扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
You can use the Keyboard control browser, reduced switching between mouse
扩展基本信息
名称 | Vimkey |
ID | eeeandejdamjifbgmmmmonggidbccnnj |
官方URL | https://chromewebstore.google.com/detail/vimkey/eeeandejdamjifbgmmmmonggidbccnnj |
简介 | Use keyboard control browser jump, scroll, switch tab and more |
文件大小 | 1.77 MB |
安装次数 | 201 |
当前版本 | 2.8.0 |
更新时间 | 2022-12-02 |
上架时间 | 2021-10-19 |
评分 | 4.00/5 共4次评分 |
开发者 | Haojen |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://haojen.github.io/vimkey |
帮助页面URL | https://haojen.github.io/vimkey/#/support |
支持的语言 | en,zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "default_locale": "en", "name": "__MSG_extension_name__", "description": "__MSG_extension_description__", "version": "2.8.0", "icons": { "48": "images\/icon-48.png", "96": "images\/icon-96.png", "128": "images\/icon-128.png", "256": "images\/icon-256.png", "512": "images\/icon-512.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "run_at": "document_start", "all_frames": false, "js": [ "content.entry.js" ], "matches": [ "*:\/\/*\/*" ] }, { "run_at": "document_end", "all_frames": false, "js": [ "webcomponents-bundle.js", "content.view.js" ], "matches": [ "*:\/\/*\/*" ] } ], "web_accessible_resources": [ "content.inject.js", "images\/icon-64.png", "images\/icon-128.png", "images\/toolbar-icon-76.png", "images\/en-us-keyboard-layout.png" ], "options_ui": { "page": "options.html", "chrome_style": false, "open_in_tab": true }, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/toolbar-icon-16.png", "19": "images\/toolbar-icon-19.png", "32": "images\/toolbar-icon-32.png", "38": "images\/toolbar-icon-38.png" } }, "permissions": [ "tabs", "storage", "activeTab", "clipboardRead", "http:\/\/*\/*", "https:\/\/*\/*" ] } |