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

Unified Diff: chrome/common/extensions/docs/examples/api/transientPage/basic/manifest.json

Issue 10134040: Add keybindings and webRequest examples to the transient background page (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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 side-by-side diff with in-line comments
Download patch
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" }
+ }
}
}

Powered by Google App Engine
This is Rietveld 408576698