chromium/chrome/test/data/extensions/api_test/keybinding/conflicting/manifest.json

{
  "name": "Conflicting keybinding test, duplicate of Basics extension (dir next to this), but uses different messages",
  "version": "1.0",
  "manifest_version": 2,
  "background": {
    "scripts": ["background.js"]
  },
  "permissions": ["activeTab"],
  "browser_action": {
    "default_title": "Send message"
  },
  "commands": {
    "toggle-feature": {
      "suggested_key": {
        "windows": "Ctrl+Shift+Y",
        "mac": "MacCtrl+Shift+Y",
        "linux": "Ctrl+Shift+Y",
        "chromeos": "Ctrl+Shift+Y",
        "default": "Ctrl+Shift+Y"
      },
      "description": "Toggle feature foo"
    },
    "_execute_browser_action": {
      "suggested_key": {
        "mac": "MacCtrl+Shift+F",
        "default": "Ctrl+Shift+F"
      }
    }
  }
}