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
官方網址 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\/*"
    ]
}