Extensions shortcut

Extensions shortcut

Lets you create a keyboard shortcut to the 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 shortcut",
  "description": "Lets you create a keyboard shortcut to the extensions page",
  "version": "2",
  "permissions": [
    "commands"
  ],
  "optional_permissions": [
    "tabs"
  ],
  "icons": {
    "16": "icon/16.png",
    "48": "icon/48.png",
    "128": "icon/128.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "open-extensions-page": {
      "description": "Open extensions page",
      "suggested_key": {
        "default": "Ctrl+Shift+E"
      }
    }
  },
  "options_ui": {
    "chrome_style": true,
    "page": "options/options.html"
  }
}