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ファイルをダウンロード

Keyboard-Only Google Search拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    ]
}