Index: chrome/common/extensions/docs/examples/api/transientPage/basic/manifest.json |
diff --git a/chrome/common/extensions/docs/examples/api/transientPage/basic/manifest.json b/chrome/common/extensions/docs/examples/api/transientPage/basic/manifest.json |
index d398f6901b83dbfa9b01d0fa1d87d749142058dd..84ca6e843e16719d8fdd207106293ad9064b22e8 100644 |
--- a/chrome/common/extensions/docs/examples/api/transientPage/basic/manifest.json |
+++ b/chrome/common/extensions/docs/examples/api/transientPage/basic/manifest.json |
@@ -3,7 +3,7 @@ |
"description": "Demonstrates usage and features of the transient page", |
"version": "1.0", |
"manifest_version": 2, |
- "permissions": ["tabs", "bookmarks", "experimental", "http://*.google.com/*"], |
+ "permissions": ["tabs", "bookmarks", "experimental", "keybinding", "http://*.google.com/*"], |
Yoyo Zhou
2012/04/24 21:38:15
This is just future-proof because keybindings is s
Matt Perry
2012/04/24 22:37:25
Ah, true. I was just copying the keybinding exampl
|
"background": { |
"scripts": ["background.js"], |
"transient": true |
@@ -11,5 +11,14 @@ |
"browser_action": { |
"default_icon" : "icon.png", |
"default_title": "Start Transient Page" |
+ }, |
+ "commands": { |
+ "open-google": { |
+ "description": "Open a tab to google.com", |
+ "suggested_key": { "default": "Ctrl+Shift+L" } |
+ }, |
+ "_execute_browser_action": { |
+ "suggested_key": { "default": "Ctrl+Shift+K" } |
+ } |
} |
} |