Extensions Page Keyboard Shortcut

Extensions Page Keyboard Shortcut

Use Ctrl+Shift+E to go to the Chrome Extensions Page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Extensions Page Keyboard Shortcut",
  "version": "1.1",
  "description": "Use Ctrl+Shift+E to go to the Chrome Extensions Page.",
  "icons": {
    "16": "icon128.png",
    "48": "icon128.png",
    "128": "icon128.png"
  },
  "background": {
    "page": "background.html"
  },
  "author": "Kyle Ryan",
  "commands": {
    "open-ext": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "chromeos": "Ctrl+Shift+E",
        "linux": "Ctrl+Shift+E"
      },
      "description": "Open Extensions page"
    }
  },
  "short_name": "Extensions Page Shortcut"
}