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

Side by Side Diff: chrome/test/data/extensions/api_test/keybinding/dont_overwrite_system/manifest.json

Issue 13044014: Make sure manifest specified shortcut for Extension Command can not override the built-in shortcuts. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Mac's secondary shortcuts can be overwritten Created 7 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 unified diff | Download patch
« no previous file with comments | « chrome/test/data/extensions/api_test/keybinding/dont_overwrite_system/background.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 {
2 "name": "An extension that tries to overwrite system keybindings",
3 "version": "1.0",
4 "manifest_version": 2,
5 "background": {
6 "scripts": ["background.js"]
7 },
8 "permissions": ["activeTab"],
9 "commands": {
10 "red": {
11 "suggested_key": "Ctrl+F",
12 "description": "Make the page red"
13 },
14 "blue": {
15 "suggested_key": "Alt+Shift+F",
16 "description": "Make the page blue"
17 }
18 }
19 }
OLDNEW
« no previous file with comments | « chrome/test/data/extensions/api_test/keybinding/dont_overwrite_system/background.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698