KeyStroke

KeyStroke

To use, click the yellow keystroke icon in to the right of the omnibox.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "KeyStroke",
  "short_name": "K",
  "description": "To use, click the yellow keystroke icon in to the right of the omnibox.",
  "version": "0.5",
  "permissions": [
    "tabs"
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.adidas.com/us/"
      ],
      "js": [
        "contentscript.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "omnibox": {
    "keyword": "ks"
  },
  "icons": {
    "16": "icon.png"
  },
  "manifest_version": 2
}