Hitkey

Hit a key and Search.

Hitkey란 무엇입니까?

Hitkey은(는) Eiji Muroichi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hit a key and Search."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Hitkey 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Feb.17, 2013
Updated to version 2.0.0
- Sync your setting with Google account
- Improved UI
- Bug fix

--------------------------------
Google Chrome extension for the fastest web surfing.
Select any texts on a webpage then hit a configured key. New tab will open with the search results page by selected words. You can configure up to 10 keys for your favorite search engines.

Default setting:
g - Google
m - Google map
w - wikipedia
a - amazon.com
y - yelp.com

*This extension doesn't work If website you accessed already implements keyboard interaction, or the page used frame or iframe.
*It may not work if you already install extensions which uses keyboard event.

--------------------------------
To customize the setting, go to Preference>Extension>Hitkey Option, then paste a URL includes "{query}".

Configuration samples:

- Gmail
https://mail.google.com/mail/u/0/#search/{query}

- Amazon.co.jp
http://www.amazon.co.jp/s/field-keywords={query}

- Twitter
https://twitter.com/#!/search/{query}

- Facebook
http://www.facebook.com/search.php?q={query}

- ALC Web (English - Japanese dictionary)
http://eow.alc.co.jp/{query}/UTF-8/?ref=sa

- Google translate
http://translate.google.com/?text={query}                    

확장 프로그램 기본 정보

이름 Hitkey Hitkey
ID iojnhefcmdplbcjelkbnfhgbdpdmjjln
공식 URL https://chromewebstore.google.com/detail/hitkey/iojnhefcmdplbcjelkbnfhgbdpdmjjln
설명 Hit a key and Search.
파일 크기 48.04 KB
설치 횟수 118
현재 버전 2.0.1
최근 업데이트 2013-02-20
출시 날짜 2013-02-19
평점 4.90/5 총 10 개의 평점
개발자 Eiji Muroichi
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hitkey",
    "manifest_version": 2,
    "version": "2.0.1",
    "description": "Hit a key and Search.",
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "homepage_url": "http:\/\/goo.gl\/KoliQ",
    "options_page": "options.html",
    "permissions": [
        "",
        "storage"
    ]
}