Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "view", | 4 "type": "view", |
| 5 "location": "panel", | 5 "location": "panel", |
| 6 "id": "network", | 6 "id": "network", |
| 7 "title": "Network", | 7 "title": "Network", |
| 8 "order": 40, | 8 "order": 40, |
| 9 "className": "Network.NetworkPanel" | 9 "className": "Network.NetworkPanel" |
| 10 }, | 10 }, |
| (...skipping 26 matching lines...) Expand all Loading... | |
| 37 "value": true, | 37 "value": true, |
| 38 "title": "Color code by resource type" | 38 "title": "Color code by resource type" |
| 39 }, | 39 }, |
| 40 { | 40 { |
| 41 "value": false, | 41 "value": false, |
| 42 "title": "Use default colors" | 42 "title": "Use default colors" |
| 43 } | 43 } |
| 44 ] | 44 ] |
| 45 }, | 45 }, |
| 46 { | 46 { |
| 47 "type": "setting", | |
| 48 "category": "Network", | |
| 49 "title": "Enables request blocking", | |
| 50 "settingName": "requestBlockingEnabled", | |
| 51 "settingType": "boolean", | |
| 52 "storageType": "session", | |
| 53 "defaultValue": false, | |
| 54 "options": [ | |
| 55 { | |
| 56 "value": true, | |
| 57 "title": "Block matched requests from being sent" | |
|
pfeldman
2017/03/07 02:37:56
I'd just say "Enable request blocking" as you did
allada
2017/03/07 21:54:04
Done.
| |
| 58 }, | |
| 59 { | |
| 60 "value": false, | |
| 61 "title": "Do not block requests" | |
| 62 } | |
| 63 ] | |
| 64 }, | |
| 65 { | |
| 47 "type": "@UI.ActionDelegate", | 66 "type": "@UI.ActionDelegate", |
| 48 "actionId": "network.blocked-urls.show", | 67 "actionId": "network.blocked-urls.show", |
| 49 "className": "Network.BlockedURLsPane.ActionDelegate", | 68 "className": "Network.BlockedURLsPane.ActionDelegate", |
| 50 "iconClass": "largeicon-block", | 69 "iconClass": "largeicon-block", |
| 51 "title": "Block network requests" | 70 "title": "Block network requests" |
| 52 }, | 71 }, |
| 53 { | 72 { |
| 54 "type": "@UI.ActionDelegate", | 73 "type": "@UI.ActionDelegate", |
| 55 "actionId": "network.toggle-recording", | 74 "actionId": "network.toggle-recording", |
| 56 "iconClass": "largeicon-start-recording", | 75 "iconClass": "largeicon-start-recording", |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 147 "networkTimingTable.css", | 166 "networkTimingTable.css", |
| 148 "networkWaterfallColumn.css", | 167 "networkWaterfallColumn.css", |
| 149 "requestCookiesView.css", | 168 "requestCookiesView.css", |
| 150 "requestHeadersTree.css", | 169 "requestHeadersTree.css", |
| 151 "requestHeadersView.css", | 170 "requestHeadersView.css", |
| 152 "webSocketFrameView.css", | 171 "webSocketFrameView.css", |
| 153 "xmlTree.css", | 172 "xmlTree.css", |
| 154 "xmlView.css" | 173 "xmlView.css" |
| 155 ] | 174 ] |
| 156 } | 175 } |
| OLD | NEW |