chrome-types 0.1.283 → 0.1.284
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/_all.d.ts +17 -3
- package/index.d.ts +17 -3
- package/package.json +2 -2
package/_all.d.ts
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
|
-
// Generated on
|
|
18
|
-
// Built at
|
|
17
|
+
// Generated on Thu May 23 2024 12:12:27 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 60066c40d78d08fcb1b14598d87b7641b90033df
|
|
19
19
|
|
|
20
20
|
// Includes all types, including MV2 + Platform Apps APIs.
|
|
21
21
|
|
|
@@ -6054,6 +6054,13 @@ declare namespace chrome {
|
|
|
6054
6054
|
* Specifies when JavaScript files are injected into the web page. The preferred and default value is `document_idle`.
|
|
6055
6055
|
*/
|
|
6056
6056
|
run_at?: extensionTypes.RunAt;
|
|
6057
|
+
|
|
6058
|
+
/**
|
|
6059
|
+
* The JavaScript "world" to run the script in. Defaults to `ISOLATED`. Only available in Manifest V3 extensions.
|
|
6060
|
+
*
|
|
6061
|
+
* @since Chrome 111
|
|
6062
|
+
*/
|
|
6063
|
+
world?: extensionTypes.ExecutionWorld;
|
|
6057
6064
|
}
|
|
6058
6065
|
}
|
|
6059
6066
|
|
|
@@ -7403,7 +7410,7 @@ declare namespace chrome {
|
|
|
7403
7410
|
}
|
|
7404
7411
|
|
|
7405
7412
|
/**
|
|
7406
|
-
* The `chrome.debugger` API serves as an alternate transport for Chrome's [remote debugging protocol](https://developer.chrome.com/devtools/docs/debugger-protocol). Use `chrome.debugger` to attach to one or more tabs to instrument network interaction, debug JavaScript, mutate the DOM and CSS,
|
|
7413
|
+
* The `chrome.debugger` API serves as an alternate transport for Chrome's [remote debugging protocol](https://developer.chrome.com/devtools/docs/debugger-protocol). Use `chrome.debugger` to attach to one or more tabs to instrument network interaction, debug JavaScript, mutate the DOM and CSS, and more. Use the {@link Debuggee} property `tabId` to target tabs with `sendCommand` and route events by `tabId` from `onEvent` callbacks.
|
|
7407
7414
|
*
|
|
7408
7415
|
* @chrome-permission debugger
|
|
7409
7416
|
*/
|
|
@@ -13243,6 +13250,13 @@ declare namespace chrome {
|
|
|
13243
13250
|
* @since Chrome 106
|
|
13244
13251
|
*/
|
|
13245
13252
|
export type DocumentLifecycle = "prerender" | "active" | "cached" | "pending_deletion";
|
|
13253
|
+
|
|
13254
|
+
/**
|
|
13255
|
+
* The JavaScript world for a script to execute within. Can either be an isolated world unique to this extension, the main world of the DOM which is shared with the page's JavaScript, or a user scripts world that is only available for scripts registered with the User Scripts API.
|
|
13256
|
+
*
|
|
13257
|
+
* @since Chrome 111
|
|
13258
|
+
*/
|
|
13259
|
+
export type ExecutionWorld = "ISOLATED" | "MAIN" | "USER_SCRIPT";
|
|
13246
13260
|
}
|
|
13247
13261
|
|
|
13248
13262
|
/**
|
package/index.d.ts
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
|
-
// Generated on
|
|
18
|
-
// Built at
|
|
17
|
+
// Generated on Thu May 23 2024 12:12:22 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 60066c40d78d08fcb1b14598d87b7641b90033df
|
|
19
19
|
|
|
20
20
|
// Includes MV3+ APIs only.
|
|
21
21
|
|
|
@@ -2800,6 +2800,13 @@ declare namespace chrome {
|
|
|
2800
2800
|
* Specifies when JavaScript files are injected into the web page. The preferred and default value is `document_idle`.
|
|
2801
2801
|
*/
|
|
2802
2802
|
run_at?: extensionTypes.RunAt;
|
|
2803
|
+
|
|
2804
|
+
/**
|
|
2805
|
+
* The JavaScript "world" to run the script in. Defaults to `ISOLATED`. Only available in Manifest V3 extensions.
|
|
2806
|
+
*
|
|
2807
|
+
* @since Chrome 111
|
|
2808
|
+
*/
|
|
2809
|
+
world?: extensionTypes.ExecutionWorld;
|
|
2803
2810
|
}
|
|
2804
2811
|
}
|
|
2805
2812
|
|
|
@@ -4149,7 +4156,7 @@ declare namespace chrome {
|
|
|
4149
4156
|
}
|
|
4150
4157
|
|
|
4151
4158
|
/**
|
|
4152
|
-
* The `chrome.debugger` API serves as an alternate transport for Chrome's [remote debugging protocol](https://developer.chrome.com/devtools/docs/debugger-protocol). Use `chrome.debugger` to attach to one or more tabs to instrument network interaction, debug JavaScript, mutate the DOM and CSS,
|
|
4159
|
+
* The `chrome.debugger` API serves as an alternate transport for Chrome's [remote debugging protocol](https://developer.chrome.com/devtools/docs/debugger-protocol). Use `chrome.debugger` to attach to one or more tabs to instrument network interaction, debug JavaScript, mutate the DOM and CSS, and more. Use the {@link Debuggee} property `tabId` to target tabs with `sendCommand` and route events by `tabId` from `onEvent` callbacks.
|
|
4153
4160
|
*
|
|
4154
4161
|
* @chrome-permission debugger
|
|
4155
4162
|
*/
|
|
@@ -9239,6 +9246,13 @@ declare namespace chrome {
|
|
|
9239
9246
|
* @since Chrome 106
|
|
9240
9247
|
*/
|
|
9241
9248
|
export type DocumentLifecycle = "prerender" | "active" | "cached" | "pending_deletion";
|
|
9249
|
+
|
|
9250
|
+
/**
|
|
9251
|
+
* The JavaScript world for a script to execute within. Can either be an isolated world unique to this extension, the main world of the DOM which is shared with the page's JavaScript, or a user scripts world that is only available for scripts registered with the User Scripts API.
|
|
9252
|
+
*
|
|
9253
|
+
* @since Chrome 111
|
|
9254
|
+
*/
|
|
9255
|
+
export type ExecutionWorld = "ISOLATED" | "MAIN" | "USER_SCRIPT";
|
|
9242
9256
|
}
|
|
9243
9257
|
|
|
9244
9258
|
/**
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"type": "module",
|
|
6
6
|
"name": "chrome-types",
|
|
7
7
|
"config": {
|
|
8
|
-
"build-hash": "
|
|
8
|
+
"build-hash": "bdfc40b001382e24"
|
|
9
9
|
},
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
@@ -16,5 +16,5 @@
|
|
|
16
16
|
"url": "https://github.com/GoogleChrome/chrome-types/issues"
|
|
17
17
|
},
|
|
18
18
|
"homepage": "https://github.com/GoogleChrome/chrome-types",
|
|
19
|
-
"version": "0.1.
|
|
19
|
+
"version": "0.1.284"
|
|
20
20
|
}
|