Index: chrome/test/data/extensions/api_test/keybinding/continue_propagation/manifest.json |
diff --git a/chrome/test/data/extensions/api_test/keybinding/continue_propagation/manifest.json b/chrome/test/data/extensions/api_test/keybinding/continue_propagation/manifest.json |
new file mode 100644 |
index 0000000000000000000000000000000000000000..1ed8a3712d617072bdc498d9b48c68a7d42dc114 |
--- /dev/null |
+++ b/chrome/test/data/extensions/api_test/keybinding/continue_propagation/manifest.json |
@@ -0,0 +1,24 @@ |
+{ |
+ "name": "An extension to test shortcuts propagation", |
+ "version": "1.0", |
+ "manifest_version": 2, |
+ "background": { |
+ "scripts": ["background.js"] |
+ }, |
+ "permissions": [ "tabs" ], |
+ "content_scripts": [ |
+ { |
+ "matches": [ "<all_urls>" ], |
+ "js": ["injected.js"] |
+ } |
+ ], |
+ "commands": { |
+ "Ctrl-Shift-F": { |
+ "description": "Test propagation of this key", |
+ "suggested_key": { |
+ "default": "Ctrl+Shift+F", |
+ "mac": "MacCtrl+Shift+F" |
+ } |
+ } |
+ } |
+} |