Instant search keyboard shortcut

Restores some of the keyboard shortcuts available in instant search

什么是Instant search keyboard shortcut?

Instant search keyboard shortcut是由Kiren开发的Chrome扩展程序,该扩展的主要功能是“Restores some of the keyboard shortcuts available in instant search”。

扩展截图

screenshot

下载Instant search keyboard shortcut扩展crx文件

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

扩展使用说明

                        Missing using tab, esc, arrow-keys and having the familiar blue arrow?

Well, look no further! This is an attempt to restore of the keyboard shortcuts of google instant search.

If something's not working feel free to send a PR to the GitHub repo.                    

扩展基本信息

名称 Instant search keyboard shortcut Instant search keyboard shortcut
ID dfaommhmceombgjkppajcdekakkinpmd
官方URL https://chromewebstore.google.com/detail/instant-search-keyboard-s/dfaommhmceombgjkppajcdekakkinpmd
简介 Restores some of the keyboard shortcuts available in instant search
文件大小 50.03 KB
安装次数 33
当前版本 0.1.1
更新时间 2017-08-05
上架时间 2017-08-05
开发者 Kiren
付费类型 free
扩展官网 https://github.com/Kirens/InstantShortcuts
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Instant search keyboard shortcut",
    "description": "Restores some of the keyboard shortcuts available in instant search",
    "version": "0.1.1",
    "author": "Kirens",
    "icons": {
        "16": "res\/icon16.png",
        "48": "res\/icon48.png",
        "128": "res\/icon128.png",
        "256": "res\/icon256.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.google.com\/search*",
                "*:\/\/www.google.se\/search*"
            ],
            "js": [
                "instant.js"
            ],
            "css": [
                "instant.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "essentials.css"
    ],
    "permissions": [
        "https:\/\/www.google.se\/*"
    ]
}