OLD | NEW |
1 { | 1 { |
2 "dependencies": [ | 2 "dependencies": [ |
3 "common", | 3 "common", |
4 "host", | 4 "host", |
5 "platform" | 5 "platform" |
6 ], | 6 ], |
7 "extensions": [ | 7 "extensions": [ |
8 { | 8 { |
9 "type": "setting", | 9 "type": "setting", |
| 10 "settingName": "blockedURLs", |
| 11 "settingType": "array", |
| 12 "defaultValue": [] |
| 13 }, |
| 14 { |
| 15 "type": "setting", |
10 "settingName": "skipStackFramesPattern", | 16 "settingName": "skipStackFramesPattern", |
11 "settingType": "regex", | 17 "settingType": "regex", |
12 "defaultValue": "" | 18 "defaultValue": "" |
13 }, | 19 }, |
14 { | 20 { |
15 "type": "setting", | 21 "type": "setting", |
16 "settingName": "skipContentScripts", | 22 "settingName": "skipContentScripts", |
17 "settingType": "boolean", | 23 "settingType": "boolean", |
18 "defaultValue": false | 24 "defaultValue": false |
19 }, | 25 }, |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 "NetworkRequest.js", | 75 "NetworkRequest.js", |
70 "PaintProfiler.js", | 76 "PaintProfiler.js", |
71 "HeapProfilerModel.js", | 77 "HeapProfilerModel.js", |
72 "../SupportedCSSProperties.js" | 78 "../SupportedCSSProperties.js" |
73 ], | 79 ], |
74 "skip_compilation": [ | 80 "skip_compilation": [ |
75 "../InspectorBackendCommands.js", | 81 "../InspectorBackendCommands.js", |
76 "../SupportedCSSProperties.js" | 82 "../SupportedCSSProperties.js" |
77 ] | 83 ] |
78 } | 84 } |
OLD | NEW |