KeyboardMode

This extension allows you to open links with your Keyboard.

什么是KeyboardMode?

KeyboardMode是由https://hanneshofer.github.io/KeyboardMode开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to open links with your Keyboard.”。

扩展截图

screenshot
screenshot
screenshot

下载KeyboardMode扩展crx文件

下载KeyboardMode扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension allows you to control chrome with your keyboard.
With the alreay knows hotkeys it is already possible to control most parts of chrome (ex. Enter new URL, go back, go forward)
after pressing a certain, adjustable, hotkey this extension shows links hints (see screenshot)
when the shown characters in the link hints are pressed the relevant link will be opend.
with "meta" keys it is possible to open certain links in new tab, new window or in new incognito window.                    

扩展基本信息

名称 KeyboardMode KeyboardMode
ID gceomdpidnmgddihieakclncpopaiplc
官方URL https://chromewebstore.google.com/detail/keyboardmode/gceomdpidnmgddihieakclncpopaiplc
简介 This extension allows you to open links with your Keyboard.
文件大小 44.36 KB
安装次数 11
当前版本 0.1
更新时间 2014-08-19
上架时间 2014-08-19
评分 5.00/5 共2次评分
开发者 https://hanneshofer.github.io/KeyboardMode
付费类型 free
支持的语言 de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "default_locale": "en",
    "description": "This extension allows you to open links with your Keyboard.",
    "icons": {
        "128": "icon.png"
    },
    "version": "0.1",
    "options_page": "options.html",
    "permissions": [
        "",
        "tabs",
        "storage"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "lib\/background.js"
        ]
    },
    "commands": {
        "activate_link_hints": {
            "suggested_key": {
                "default": "Ctrl+M",
                "mac": "Command+M"
            },
            "description": "Link Hints anzeigen"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/keyboard_utils.js",
                "lib\/dom_utils.js",
                "lib\/option_utils.js",
                "link_hints.js",
                "command.js"
            ],
            "css": [
                "keyboardmode.css"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}