Keyboard-Only Google Search

Quick and easy keyboard only google search. NOTE: Check chrome shortcut settings at the bottom right of this page.

Keyboard-Only Google Search란 무엇입니까?

Keyboard-Only Google Search은(는) jaredbeachdev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quick and easy keyboard only google search. NOTE: Check chrome shortcut settings at the bottom right of this page."입니다.

확장 프로그램 스크린샷

screenshot

Keyboard-Only Google Search 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This is a quick and easy keyboard-only Google Search extension. Smoothly browse through and open links using keyboard shortcuts.

New in V.2:
 - New link background color preference (will be adding more colors shortly)
 - Numerous stability improvements

*This is in very early development (I mainly made it for myself to use), so let me know if you have any suggestions or issues: [email protected]

Suggested Keyboard Shortcuts:
 - Windows: Ctrl + Down Arrow: Move down a link, Ctrl + Up: Move up a link, Ctrl + Enter: Open link in current window
 - Mac (OS X): MacCtrl + Down Arrow: Move down a link, MacCtrl + Up: Move up a link, MacCtrl + Enter: Open link in current window                    

확장 프로그램 기본 정보

이름 Keyboard-Only Google Search Keyboard-Only Google Search
ID eehegeemkmhjnckljodpeoocmjpnikmj
공식 URL https://chrome.google.com/webstore/detail/keyboard-only-google-sear/eehegeemkmhjnckljodpeoocmjpnikmj
설명 Quick and easy keyboard only google search. NOTE: Check chrome shortcut settings at the bottom right of this page.
파일 크기 61.81 KB
설치 횟수 113
현재 버전 0.0.0.3
최근 업데이트 2016-12-11
출시 날짜 2016-12-11
평점 5.00/5 총 2 개의 평점
개발자 jaredbeachdev
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Keyboard-Only Google Search",
    "version": "0.0.0.3",
    "description": "Quick and easy keyboard only google search. NOTE: Check chrome shortcut settings at the bottom right of this page.",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "jquery-3.0.0.min.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Change Link Background Color",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/*"
            ],
            "js": [
                "content.js",
                "jquery-3.0.0.min.js"
            ]
        }
    ],
    "commands": {
        "go-down": {
            "suggested_key": {
                "default": "Ctrl+Down",
                "mac": "Ctrl+Down"
            },
            "description": "Go down a link"
        },
        "go-up": {
            "suggested_key": {
                "default": "Ctrl+Up",
                "mac": "Ctrl+Up"
            },
            "description": "Go up a link"
        },
        "open": {
            "suggested_key": {
                "default": "Ctrl+Space",
                "mac": "Ctrl+Shift+Space"
            },
            "description": "Open a selected link"
        }
    },
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "https:\/\/www.google.com\/*",
        "storage"
    ]
}