From 52087dbaeef34185320ca5f11d93ff5d73735973 Mon Sep 17 00:00:00 2001 From: NN Date: Sun, 24 Jul 2016 06:09:03 +0300 Subject: [PATCH] Add missing url property for all requests (#10201) See documentation https://developer.chrome.com/extensions/webRequest https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/webRequest/ --- chrome/chrome.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/chrome.d.ts b/chrome/chrome.d.ts index efdfb5ce59..577d07b526 100644 --- a/chrome/chrome.d.ts +++ b/chrome/chrome.d.ts @@ -7233,6 +7233,7 @@ declare namespace chrome.webRequest { } interface ResourceRequest { + url: string; /** 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. */ requestId: string; /** The value 0 indicates that the request happens in the main frame; a positive value indicates the ID of a subframe in which the request happens. If the document of a (sub-)frame is loaded (type is main_frame or sub_frame), frameId indicates the ID of this frame, not the ID of the outer frame. Frame IDs are unique within a tab. */ @@ -7251,7 +7252,6 @@ declare namespace chrome.webRequest { } interface WebRequestDetails extends ResourceRequest { - url: string; /** Standard HTTP method. */ method: string; }