Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(338)

Side by Side Diff: chrome/common/extensions/docs/examples/howto/tab_shortcuts/manifest.json

Issue 12481004: Created a sample extension that shows off event pages, new tab apis, and keyboard shortcuts. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix nit Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « AUTHORS ('k') | chrome/common/extensions/docs/examples/howto/tab_shortcuts/tab_shortcuts.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 {
2 "name": "Tab Shortcuts",
3 "version": "1.0",
4 "description": "Allows pinning and duplication of tabs via keyboard shortcuts. ",
5 "manifest_version": 2,
6 "background": {
7 "scripts": ["tab_shortcuts.js"],
8 "persistent": false
9 },
10 "commands": {
11 "toggle-pin-tab": {
12 "suggested_key": {
13 "default": "Ctrl+Shift+X",
14 "mac": "Command+Shift+X"
15 },
16 "description": "Toggles whether the current tab is pinned."
17 },
18 "duplicate-tab": {
19 "suggested_key": {
20 "default": "Ctrl+Shift+Z",
21 "mac": "Command+Shift+Z"
22 },
23 "description": "Duplicates the current tab."
24 }
25 }
26 }
OLDNEW
« no previous file with comments | « AUTHORS ('k') | chrome/common/extensions/docs/examples/howto/tab_shortcuts/tab_shortcuts.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698