chrome-types 0.1.370 → 0.1.371
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 +23 -6
- package/index.d.ts +23 -6
- 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 Sat Aug
|
|
18
|
-
// Built at
|
|
17
|
+
// Generated on Sat Aug 16 2025 22:32:37 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at ef373820fec1dd17029b92b3c2b79db1c8e9ae29
|
|
19
19
|
|
|
20
20
|
// Includes all types, including MV2 + Platform Apps APIs.
|
|
21
21
|
|
|
@@ -7531,10 +7531,6 @@ declare namespace chrome {
|
|
|
7531
7531
|
* 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.
|
|
7532
7532
|
*
|
|
7533
7533
|
* @chrome-permission debugger
|
|
7534
|
-
* @chrome-platform chromeos
|
|
7535
|
-
* @chrome-platform linux
|
|
7536
|
-
* @chrome-platform mac
|
|
7537
|
-
* @chrome-platform win
|
|
7538
7534
|
*/
|
|
7539
7535
|
namespace _debugger {
|
|
7540
7536
|
|
|
@@ -26659,6 +26655,27 @@ declare namespace chrome {
|
|
|
26659
26655
|
tabId?: number;
|
|
26660
26656
|
}
|
|
26661
26657
|
|
|
26658
|
+
/**
|
|
26659
|
+
* @since Pending
|
|
26660
|
+
*/
|
|
26661
|
+
export interface PanelOpenedInfo {
|
|
26662
|
+
|
|
26663
|
+
/**
|
|
26664
|
+
* The ID of the window where the side panel is opened. This is available for both global and tab-specific panels.
|
|
26665
|
+
*/
|
|
26666
|
+
windowId: number;
|
|
26667
|
+
|
|
26668
|
+
/**
|
|
26669
|
+
* The optional ID of the tab where the side panel is opened. This is provided only when the panel is tab-specific.
|
|
26670
|
+
*/
|
|
26671
|
+
tabId?: number;
|
|
26672
|
+
|
|
26673
|
+
/**
|
|
26674
|
+
* The path of the local resource within the extension package whose content is displayed in the panel.
|
|
26675
|
+
*/
|
|
26676
|
+
path: string;
|
|
26677
|
+
}
|
|
26678
|
+
|
|
26662
26679
|
/**
|
|
26663
26680
|
* Configures the side panel.
|
|
26664
26681
|
*
|
package/index.d.ts
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
|
-
// Generated on Sat Aug
|
|
18
|
-
// Built at
|
|
17
|
+
// Generated on Sat Aug 16 2025 22:32:33 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at ef373820fec1dd17029b92b3c2b79db1c8e9ae29
|
|
19
19
|
|
|
20
20
|
// Includes MV3+ APIs only.
|
|
21
21
|
|
|
@@ -4283,10 +4283,6 @@ declare namespace chrome {
|
|
|
4283
4283
|
* 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.
|
|
4284
4284
|
*
|
|
4285
4285
|
* @chrome-permission debugger
|
|
4286
|
-
* @chrome-platform chromeos
|
|
4287
|
-
* @chrome-platform linux
|
|
4288
|
-
* @chrome-platform mac
|
|
4289
|
-
* @chrome-platform win
|
|
4290
4286
|
*/
|
|
4291
4287
|
namespace _debugger {
|
|
4292
4288
|
|
|
@@ -20775,6 +20771,27 @@ declare namespace chrome {
|
|
|
20775
20771
|
tabId?: number;
|
|
20776
20772
|
}
|
|
20777
20773
|
|
|
20774
|
+
/**
|
|
20775
|
+
* @since Pending
|
|
20776
|
+
*/
|
|
20777
|
+
export interface PanelOpenedInfo {
|
|
20778
|
+
|
|
20779
|
+
/**
|
|
20780
|
+
* The ID of the window where the side panel is opened. This is available for both global and tab-specific panels.
|
|
20781
|
+
*/
|
|
20782
|
+
windowId: number;
|
|
20783
|
+
|
|
20784
|
+
/**
|
|
20785
|
+
* The optional ID of the tab where the side panel is opened. This is provided only when the panel is tab-specific.
|
|
20786
|
+
*/
|
|
20787
|
+
tabId?: number;
|
|
20788
|
+
|
|
20789
|
+
/**
|
|
20790
|
+
* The path of the local resource within the extension package whose content is displayed in the panel.
|
|
20791
|
+
*/
|
|
20792
|
+
path: string;
|
|
20793
|
+
}
|
|
20794
|
+
|
|
20778
20795
|
/**
|
|
20779
20796
|
* Configures the side panel.
|
|
20780
20797
|
*
|
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": "d39998650a793fbd"
|
|
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.371"
|
|
20
20
|
}
|