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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
    ]
}