@types/chrome 0.0.235 → 0.0.236
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 +10 -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:
|
11
|
+
* Last updated: Sun, 14 May 2023 19:02:46 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
@@ -9207,11 +9207,21 @@ declare namespace chrome.tabs {
|
|
9207
9207
|
* @since Chrome 41.
|
9208
9208
|
*/
|
9209
9209
|
frameId?: number | undefined;
|
9210
|
+
/**
|
9211
|
+
* Optional. Open a port to a specific document identified by documentId instead of all frames in the tab.
|
9212
|
+
* @since Chrome 106.
|
9213
|
+
*/
|
9214
|
+
documentId?: string;
|
9210
9215
|
}
|
9211
9216
|
|
9212
9217
|
export interface MessageSendOptions {
|
9213
9218
|
/** Optional. Send a message to a specific frame identified by frameId instead of all frames in the tab. */
|
9214
9219
|
frameId?: number | undefined;
|
9220
|
+
/**
|
9221
|
+
* Optional. Send a message to a specific document identified by documentId instead of all frames in the tab.
|
9222
|
+
* @since Chrome 106.
|
9223
|
+
*/
|
9224
|
+
documentId?: string;
|
9215
9225
|
}
|
9216
9226
|
|
9217
9227
|
export interface GroupOptions {
|
chrome/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@types/chrome",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.236",
|
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",
|
@@ -93,6 +93,6 @@
|
|
93
93
|
"@types/filesystem": "*",
|
94
94
|
"@types/har-format": "*"
|
95
95
|
},
|
96
|
-
"typesPublisherContentHash": "
|
96
|
+
"typesPublisherContentHash": "38c86a5dafeb4513b0c378feaa90616286c11afb94efae6baca3dba377402e20",
|
97
97
|
"typeScriptVersion": "4.3"
|
98
98
|
}
|