| 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 messages", |
| 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": ["activeTab"], | 8 "permissions": ["activeTab"], |
| 9 "browser_action": { | 9 "browser_action": { |
| 10 "default_title": "Make this page green" | 10 "default_title": "Send message" |
| 11 }, | 11 }, |
| 12 "commands": { | 12 "commands": { |
| 13 "toggle-feature": { | 13 "toggle-feature": { |
| 14 "suggested_key": { | 14 "suggested_key": { |
| 15 "windows": "Ctrl+Shift+Y", | 15 "windows": "Ctrl+Shift+Y", |
| 16 "mac": "MacCtrl+Shift+Y", | 16 "mac": "MacCtrl+Shift+Y", |
| 17 "linux": "Ctrl+Shift+Y", | 17 "linux": "Ctrl+Shift+Y", |
| 18 "chromeos": "Ctrl+Shift+Y", | 18 "chromeos": "Ctrl+Shift+Y", |
| 19 "default": "Ctrl+Shift+Y" | 19 "default": "Ctrl+Shift+Y" |
| 20 }, | 20 }, |
| 21 "description": "Toggle feature foo" | 21 "description": "Toggle feature foo" |
| 22 }, | 22 }, |
| 23 "_execute_browser_action": { | 23 "_execute_browser_action": { |
| 24 "suggested_key": { | 24 "suggested_key": { |
| 25 "mac": "MacCtrl+Shift+F", | 25 "mac": "MacCtrl+Shift+F", |
| 26 "default": "Ctrl+Shift+F" | 26 "default": "Ctrl+Shift+F" |
| 27 } | 27 } |
| 28 } | 28 } |
| 29 } | 29 } |
| 30 } | 30 } |
| OLD | NEW |