@types/chrome 0.0.201 → 0.0.202
Sign up to get free protection for your applications and to get access to all the features.
- chrome/README.md +1 -1
- chrome/index.d.ts +12 -0
- chrome/package.json +2 -2
chrome/README.md
CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for Chrome extension development (http://
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/chrome.
|
9
9
|
|
10
10
|
### Additional Details
|
11
|
-
* Last updated: Tue, 15 Nov 2022
|
11
|
+
* Last updated: Tue, 15 Nov 2022 08:02:56 GMT
|
12
12
|
* Dependencies: [@types/filesystem](https://npmjs.com/package/@types/filesystem), [@types/har-format](https://npmjs.com/package/@types/har-format)
|
13
13
|
* Global values: `chrome`
|
14
14
|
|
chrome/index.d.ts
CHANGED
@@ -10936,6 +10936,18 @@ declare namespace chrome.webRequest {
|
|
10936
10936
|
export interface WebRequestHeadersDetails extends WebRequestDetails {
|
10937
10937
|
/** Optional. The HTTP request headers that are going to be sent out with this request. */
|
10938
10938
|
requestHeaders?: HttpHeader[] | undefined;
|
10939
|
+
documentId: string;
|
10940
|
+
documentLifecycle: "prerender" | "active" | "cached" | "pending_deletion";
|
10941
|
+
frameType: "outermost_frame" | "fenced_frame" | "sub_frame";
|
10942
|
+
frameId: number;
|
10943
|
+
initiator?: string | undefined;
|
10944
|
+
parentDocumentId?: string | undefined;
|
10945
|
+
parentFrameId: number;
|
10946
|
+
requestId: string;
|
10947
|
+
tabId: number;
|
10948
|
+
timeStamp: number;
|
10949
|
+
type: ResourceType;
|
10950
|
+
url: string;
|
10939
10951
|
}
|
10940
10952
|
|
10941
10953
|
export interface WebRequestBodyDetails extends WebRequestDetails {
|
chrome/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@types/chrome",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.202",
|
4
4
|
"description": "TypeScript definitions for Chrome extension development",
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/chrome",
|
6
6
|
"license": "MIT",
|
@@ -88,6 +88,6 @@
|
|
88
88
|
"@types/filesystem": "*",
|
89
89
|
"@types/har-format": "*"
|
90
90
|
},
|
91
|
-
"typesPublisherContentHash": "
|
91
|
+
"typesPublisherContentHash": "e403997e87224dfa64bcccd56cf255ff2b75fba52d3ebc1be1bf1e0c16889b8c",
|
92
92
|
"typeScriptVersion": "4.1"
|
93
93
|
}
|