Keyboard-Only Google Search

Keyboard-Only Google Search

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

Merlin
Additional files are visible only to premium users

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"
  ]
}