OLD | NEW |
1 { | 1 { |
2 "extensions": [ | 2 "extensions": [ |
3 { | 3 { |
4 "type": "@WebInspector.ActionDelegate", | 4 "type": "@WebInspector.ActionDelegate", |
5 "actionId": "settings.show", | 5 "actionId": "settings.show", |
6 "className": "WebInspector.SettingsController.ActionDelegate", | 6 "className": "WebInspector.SettingsController.ActionDelegate", |
7 "bindings": [ | 7 "bindings": [ |
8 { | 8 { |
9 "shortcut": "F1 Shift+?" | 9 "shortcut": "F1 Shift+?" |
10 } | 10 } |
11 ] | 11 ] |
12 }, | 12 }, |
13 { | 13 { |
14 "type": "@WebInspector.ActionDelegate", | 14 "type": "@WebInspector.ActionDelegate", |
15 "actionId": "settings.help", | 15 "actionId": "settings.help", |
16 "className": "WebInspector.SettingsController.ActionDelegate" | 16 "className": "WebInspector.SettingsController.ActionDelegate" |
17 }, | 17 }, |
18 { | 18 { |
19 "type": "@WebInspector.ActionDelegate", | 19 "type": "@WebInspector.ActionDelegate", |
20 "actionId": "settings.shortcuts", | 20 "actionId": "settings.shortcuts", |
21 "className": "WebInspector.SettingsController.ActionDelegate" | 21 "className": "WebInspector.SettingsController.ActionDelegate" |
22 }, | 22 }, |
23 { | 23 { |
24 "type": "@WebInspector.SettingUI", | 24 "type": "@WebInspector.SettingUI", |
25 "category": "Sources", | 25 "category": "Sources", |
26 "className": "WebInspector.SettingsScreen.SkipStackFramePatternSetti
ngUI" | 26 "className": "WebInspector.SettingsScreen.SkipStackFramePatternSetti
ngUI", |
| 27 "settings": [ |
| 28 "skipContentScripts", |
| 29 "skipStackFramesPattern" |
| 30 ] |
| 31 }, |
| 32 { |
| 33 "type": "@WebInspector.Revealer", |
| 34 "contextTypes": ["WebInspector.Setting"], |
| 35 "className": "WebInspector.SettingsController.Revealer" |
27 }, | 36 }, |
28 { | 37 { |
29 "type": "context-menu-item", | 38 "type": "context-menu-item", |
30 "location": "mainMenu/footer", | 39 "location": "mainMenu/footer", |
31 "title": "Shortcuts", | 40 "title": "Shortcuts", |
32 "actionId": "settings.shortcuts" | 41 "actionId": "settings.shortcuts" |
33 }, | 42 }, |
34 { | 43 { |
35 "type": "context-menu-item", | 44 "type": "context-menu-item", |
36 "location": "mainMenu/footer", | 45 "location": "mainMenu/footer", |
37 "title": "Settings", | 46 "title": "Settings", |
38 "actionId": "settings.show" | 47 "actionId": "settings.show" |
39 }, | 48 }, |
40 { | 49 { |
41 "type": "context-menu-item", | 50 "type": "context-menu-item", |
42 "location": "mainMenu/footer", | 51 "location": "mainMenu/footer", |
43 "title": "Help", | 52 "title": "Help", |
44 "actionId": "settings.help" | 53 "actionId": "settings.help" |
45 } | 54 } |
46 ], | 55 ], |
47 "dependencies": [ | 56 "dependencies": [ |
48 "components" | 57 "components" |
49 ], | 58 ], |
50 "scripts": [ | 59 "scripts": [ |
51 "EditFileSystemDialog.js", | 60 "EditFileSystemDialog.js", |
52 "FrameworkBlackboxDialog.js", | 61 "FrameworkBlackboxDialog.js", |
53 "SettingsScreen.js" | 62 "SettingsScreen.js" |
54 ] | 63 ] |
55 } | 64 } |
OLD | NEW |