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

Unified Diff: chrome/test/data/extensions/api_test/keybinding/continue_propagation/manifest.json

Issue 504183004: Continue key propagation for extensions without any listeners to chrome.commands.onCommand. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: Change manifest to use MacCtrl. Created 6 years, 3 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
« no previous file with comments | « chrome/test/data/extensions/api_test/keybinding/continue_propagation/injected.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"
+ }
+ }
+ }
+}
« no previous file with comments | « chrome/test/data/extensions/api_test/keybinding/continue_propagation/injected.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698