Keyboard launch

Keyboard launch

Simple and useful, one key to launch, so beautiful. 简单与实用,一键直达,很是优雅。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Keyboard launch",
  "description": "Simple and useful, one key to launch, so beautiful. 简单与实用,一键直达,很是优雅。",
  "version": "1.1",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon16.png",
    "default_popup": "options.html"
  },
  "permissions": [
    "alarms",
    "http://*/",
    "https://*/"
  ],
  "options_page": "options.html",
  "background": {
    "scripts": [
      "jquery191.js",
      "base.js",
      "background.js"
    ]
  },
  "commands": {
    "newTab": {
      "suggested_key": {
        "default": "Ctrl+E"
      },
      "description": "新建标签页"
    }
  }
}