summaryrefslogtreecommitdiff
path: root/chromium/chrome/common/extensions/docs/examples/api/tabs/pin/manifest.json
blob: 3154c8c9368a6391104211cc835794fc939ec280 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "name": "Keyboard Pin",
  "version": "0.3",
  "description": "Creates a keyboard shortcut (Alt + Shift + P) to toggle the pinned state of the currently selected tab",
  "background": {
    "persistent": false,
    "scripts": ["background.js"]
  },
  "commands": {
    "toggle-pin": {
      "suggested_key": { "default": "Alt+Shift+P" },
      "description": "Toggle tab pin"
    }
  },
  "manifest_version": 2
}