OLD | NEW |
1 { | 1 { |
2 "name": "Conflicting keybinding test, duplicate of Basics extension (dir next
to this), but uses different colors", | 2 "name": "Conflicting keybinding test, duplicate of Basics extension (dir next
to this), but uses different colors", |
3 "version": "1.0", | 3 "version": "1.0", |
4 "manifest_version": 2, | 4 "manifest_version": 2, |
5 "background": { | 5 "background": { |
6 "scripts": ["background.js"] | 6 "scripts": ["background.js"] |
7 }, | 7 }, |
8 "permissions": [ | 8 "permissions": [ |
9 "tabs", "http://*/*", "experimental", "keybinding" | 9 "tabs", "http://*/*", "experimental", "commands" |
10 ], | 10 ], |
11 "browser_action": { | 11 "browser_action": { |
12 "default_title": "Make this page green" | 12 "default_title": "Make this page green" |
13 }, | 13 }, |
14 "commands": { | 14 "commands": { |
15 "toggle-feature": { | 15 "toggle-feature": { |
16 "suggested_key": { | 16 "suggested_key": { |
17 "windows": "Ctrl+Shift+Y", | 17 "windows": "Ctrl+Shift+Y", |
18 "mac": "Command+Shift+Y", | 18 "mac": "Command+Shift+Y", |
19 "linux": "Ctrl+Shift+Y", | 19 "linux": "Ctrl+Shift+Y", |
20 "chromeos": "Ctrl+Shift+Y", | 20 "chromeos": "Ctrl+Shift+Y", |
21 "default": "Ctrl+Shift+Y" | 21 "default": "Ctrl+Shift+Y" |
22 }, | 22 }, |
23 "description": "Toggle feature foo" | 23 "description": "Toggle feature foo" |
24 }, | 24 }, |
25 "_execute_browser_action": { | 25 "_execute_browser_action": { |
26 "suggested_key": { | 26 "suggested_key": { |
27 "mac": "Command+Shift+F", | 27 "mac": "Command+Shift+F", |
28 "default": "Ctrl+Shift+F" | 28 "default": "Ctrl+Shift+F" |
29 } | 29 } |
30 } | 30 } |
31 } | 31 } |
32 } | 32 } |
OLD | NEW |