Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "@WebInspector.PanelFactory", | 4 "type": "@WebInspector.PanelFactory", |
| 5 "name": "console", | 5 "name": "console", |
| 6 "title": "Console", | 6 "title": "Console", |
| 7 "order": 20, | 7 "order": 20, |
| 8 "className": "WebInspector.ConsolePanelFactory" | 8 "className": "WebInspector.ConsolePanelFactory" |
| 9 }, | 9 }, |
| 10 { | 10 { |
| (...skipping 19 matching lines...) Expand all Loading... | |
| 30 ] | 30 ] |
| 31 }, | 31 }, |
| 32 { | 32 { |
| 33 "type": "@WebInspector.ActionDelegate", | 33 "type": "@WebInspector.ActionDelegate", |
| 34 "actionId": "console.clear", | 34 "actionId": "console.clear", |
| 35 "title": "Clear console", | 35 "title": "Clear console", |
| 36 "iconClass": "clear-toolbar-item", | 36 "iconClass": "clear-toolbar-item", |
| 37 "className": "WebInspector.ConsoleView.ActionDelegate", | 37 "className": "WebInspector.ConsoleView.ActionDelegate", |
| 38 "bindings": [ | 38 "bindings": [ |
| 39 { | 39 { |
| 40 "platform": "windows,linux", | |
| 41 "shortcut": "Ctrl+L" | 40 "shortcut": "Ctrl+L" |
| 42 }, | |
| 43 { | |
| 44 "platform": "mac", | |
| 45 "shortcut": "Ctrl+L Meta+L" | |
|
pfeldman
2015/09/02 02:39:22
Cmd + K used to clear console on Mac.
samli
2015/09/02 19:07:48
Done.
| |
| 46 } | 41 } |
| 47 ] | 42 ] |
| 48 }, | 43 }, |
| 49 { | 44 { |
| 50 "type": "setting", | 45 "type": "setting", |
| 51 "category": "Console", | 46 "category": "Console", |
| 52 "title": "Hide network messages", | 47 "title": "Hide network messages", |
| 53 "settingName": "hideNetworkMessages", | 48 "settingName": "hideNetworkMessages", |
| 54 "settingType": "boolean", | 49 "settingType": "boolean", |
| 55 "defaultValue": false | 50 "defaultValue": false |
| (...skipping 28 matching lines...) Expand all Loading... | |
| 84 ], | 79 ], |
| 85 "scripts": [ | 80 "scripts": [ |
| 86 "ConsoleViewMessage.js", | 81 "ConsoleViewMessage.js", |
| 87 "ConsoleView.js", | 82 "ConsoleView.js", |
| 88 "ConsolePanel.js" | 83 "ConsolePanel.js" |
| 89 ], | 84 ], |
| 90 "resources": [ | 85 "resources": [ |
| 91 "consoleView.css" | 86 "consoleView.css" |
| 92 ] | 87 ] |
| 93 } | 88 } |
| OLD | NEW |