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..747dc4258e0333a655cb3bc0f84dabc54d921d7f |
--- /dev/null |
+++ b/chrome/test/data/extensions/api_test/keybinding/continue_propagation/manifest.json |
@@ -0,0 +1,23 @@ |
+{ |
+ "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": { |
+ "CtrlShiftD": { |
Finnur
2014/08/28 11:15:39
CtrlShiftD?
David Tseng
2014/08/28 23:37:11
Earlier keystroke I used which for some reason, do
|
+ "description": "Test propagation of this key", |
+ "suggested_key": { |
+ "default": "Ctrl+Shift+F" |
+ } |
+ } |
+ } |
+} |