| Index: chrome/common/extensions/api/extension_api.json
|
| diff --git a/chrome/common/extensions/api/extension_api.json b/chrome/common/extensions/api/extension_api.json
|
| index 6f38d37b38f92d3e10eb6354f92b44ed3dee1e67..3fdb715aa48c278b5f680381142ca09768b68590 100644
|
| --- a/chrome/common/extensions/api/extension_api.json
|
| +++ b/chrome/common/extensions/api/extension_api.json
|
| @@ -3568,6 +3568,22 @@
|
| ]
|
| },
|
| {
|
| + "name": "onBeforeSendHeaders",
|
| + "type": "function",
|
| + "description": "Fires before sending an HTTP request, once the request headers are available.",
|
| + "parameters": [
|
| + {
|
| + "type": "object",
|
| + "name": "details",
|
| + "properties": {
|
| + "requestId": {"type": "string", "description": "The ID of the request. Request IDs are unique within a browser session. As a result, they could be used to relate different events of the same request."},
|
| + "url": {"type": "string"},
|
| + "timeStamp": {"type": "number", "description": "The time when the browser was about to make the request, in milliseconds since the epoch."}
|
| + }
|
| + }
|
| + ]
|
| + },
|
| + {
|
| "name": "onRequestSent",
|
| "type": "function",
|
| "description": "Fires when a request is sent to the server.",
|
|
|