| Index: chrome/common/extensions/api/experimental.webRequest.json
|
| diff --git a/chrome/common/extensions/api/experimental.webRequest.json b/chrome/common/extensions/api/experimental.webRequest.json
|
| index d76d11208a2ebd96fdd9937b46a2921e57a046c7..239a5314fe40fe04f83b97aef11c52bbaf023dd4 100644
|
| --- a/chrome/common/extensions/api/experimental.webRequest.json
|
| +++ b/chrome/common/extensions/api/experimental.webRequest.json
|
| @@ -92,6 +92,17 @@
|
| "optional": true,
|
| "items": { "type": "string" }
|
| },
|
| + "ports": {
|
| + "type": "array",
|
| + "description": "Matches if the port of the URL is contained in any of the specified port lists. For example <code>[80, 443, [1000, 1200]]</code> matches all requests on port 80, 443 and in the range 1000-1200.",
|
| + "optional": true,
|
| + "items": {
|
| + "choices": [
|
| + {"type": "integer", "description": "A specific port."},
|
| + {"type": "array", "items": {"type": "integer"}, "description": "A pair of integers identiying the start and end (both inclusive) of a port range."}
|
| + ]
|
| + }
|
| + },
|
| "resourceType": {
|
| "type": "array",
|
| "optional": true,
|
|
|