| OLD | NEW |
| 1 { | 1 { |
| 2 "dependencies": [ | 2 "dependencies": [ |
| 3 "common", | 3 "common", |
| 4 "host", | 4 "host", |
| 5 "platform", | 5 "platform", |
| 6 "protocol" | 6 "protocol" |
| 7 ], | 7 ], |
| 8 "extensions": [ | 8 "extensions": [ |
| 9 { | 9 { |
| 10 "type": "setting", | 10 "type": "setting", |
| 11 "settingName": "networkBlockedURLs", | 11 "settingName": "networkBlockedURLs", |
| 12 "settingType": "array", | 12 "settingType": "array", |
| 13 "storageType": "session", | |
| 14 "defaultValue": [] | 13 "defaultValue": [] |
| 15 }, | 14 }, |
| 16 { | 15 { |
| 17 "type": "setting", | 16 "type": "setting", |
| 18 "settingName": "skipStackFramesPattern", | 17 "settingName": "skipStackFramesPattern", |
| 19 "settingType": "regex", | 18 "settingType": "regex", |
| 20 "defaultValue": "" | 19 "defaultValue": "" |
| 21 }, | 20 }, |
| 22 { | 21 { |
| 23 "type": "setting", | 22 "type": "setting", |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 "settingType": "boolean", | 88 "settingType": "boolean", |
| 90 "defaultValue": false | 89 "defaultValue": false |
| 91 }, | 90 }, |
| 92 { | 91 { |
| 93 "type": "setting", | 92 "type": "setting", |
| 94 "category": "Console", | 93 "category": "Console", |
| 95 "title": "Enable custom formatters", | 94 "title": "Enable custom formatters", |
| 96 "settingName": "customFormatters", | 95 "settingName": "customFormatters", |
| 97 "settingType": "boolean", | 96 "settingType": "boolean", |
| 98 "defaultValue": false | 97 "defaultValue": false |
| 98 }, |
| 99 { |
| 100 "type": "setting", |
| 101 "category": "Network", |
| 102 "title": "Enable request blocking", |
| 103 "settingName": "requestBlockingEnabled", |
| 104 "settingType": "boolean", |
| 105 "storageType": "session", |
| 106 "defaultValue": false, |
| 107 "options": [ |
| 108 { |
| 109 "value": true, |
| 110 "title": "Enables request blocking" |
| 111 }, |
| 112 { |
| 113 "value": false, |
| 114 "title": "Disable request blocking" |
| 115 } |
| 116 ] |
| 99 } | 117 } |
| 100 ], | 118 ], |
| 101 "scripts": [ | 119 "scripts": [ |
| 102 "Target.js", | 120 "Target.js", |
| 103 "TargetManager.js", | 121 "TargetManager.js", |
| 104 "Connections.js", | 122 "Connections.js", |
| 105 "ConsoleModel.js", | 123 "ConsoleModel.js", |
| 106 "ContentProviders.js", | 124 "ContentProviders.js", |
| 107 "CookieModel.js", | 125 "CookieModel.js", |
| 108 "CookieParser.js", | 126 "CookieParser.js", |
| (...skipping 30 matching lines...) Expand all Loading... |
| 139 "NetworkRequest.js", | 157 "NetworkRequest.js", |
| 140 "PaintProfiler.js", | 158 "PaintProfiler.js", |
| 141 "HeapProfilerModel.js", | 159 "HeapProfilerModel.js", |
| 142 "../SupportedCSSProperties.js", | 160 "../SupportedCSSProperties.js", |
| 143 "FilmStripModel.js" | 161 "FilmStripModel.js" |
| 144 ], | 162 ], |
| 145 "skip_compilation": [ | 163 "skip_compilation": [ |
| 146 "../SupportedCSSProperties.js" | 164 "../SupportedCSSProperties.js" |
| 147 ] | 165 ] |
| 148 } | 166 } |
| OLD | NEW |