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

Side by Side 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: Add new test. 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 unified diff | Download patch
OLDNEW
(Empty)
1 {
2 "name": "An extension to test shortcuts propagation",
3 "version": "1.0",
4 "manifest_version": 2,
5 "background": {
6 "scripts": ["background.js"]
7 },
8 "permissions": [ "tabs" ],
9 "content_scripts": [
10 {
11 "matches": [ "<all_urls>" ],
12 "js": ["injected.js"]
13 }
14 ],
15 "commands": {
16 "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
17 "description": "Test propagation of this key",
18 "suggested_key": {
19 "default": "Ctrl+Shift+F"
20 }
21 }
22 }
23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698