chrome-types 0.1.376 → 0.1.378
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 Tue Sep
|
|
18
|
-
// Built at
|
|
17
|
+
// Generated on Tue Sep 23 2025 22:32:55 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 1ee791397a82522faf6bac7ffcc6180cbebad93b
|
|
19
19
|
|
|
20
20
|
// Includes all types, including MV2 + Platform Apps APIs.
|
|
21
21
|
|
|
@@ -26685,6 +26685,27 @@ declare namespace chrome {
|
|
|
26685
26685
|
path: string;
|
|
26686
26686
|
}
|
|
26687
26687
|
|
|
26688
|
+
/**
|
|
26689
|
+
* @since Pending
|
|
26690
|
+
*/
|
|
26691
|
+
export interface PanelClosedInfo {
|
|
26692
|
+
|
|
26693
|
+
/**
|
|
26694
|
+
* The ID of the window where the side panel was closed. This is available for both global and tab-specific panels.
|
|
26695
|
+
*/
|
|
26696
|
+
windowId: number;
|
|
26697
|
+
|
|
26698
|
+
/**
|
|
26699
|
+
* The optional ID of the tab where the side panel was closed. This is provided only when the panel is tab-specific.
|
|
26700
|
+
*/
|
|
26701
|
+
tabId?: number;
|
|
26702
|
+
|
|
26703
|
+
/**
|
|
26704
|
+
* The path of the local resource within the extension package whose content is displayed in the panel.
|
|
26705
|
+
*/
|
|
26706
|
+
path: string;
|
|
26707
|
+
}
|
|
26708
|
+
|
|
26688
26709
|
/**
|
|
26689
26710
|
* Fired when the extension's side panel is opened.
|
|
26690
26711
|
*
|
|
@@ -35891,10 +35912,6 @@ declare namespace chrome {
|
|
|
35891
35912
|
* Use the `chrome.webNavigation` API to receive notifications about the status of navigation requests in-flight.
|
|
35892
35913
|
*
|
|
35893
35914
|
* @chrome-permission webNavigation
|
|
35894
|
-
* @chrome-platform chromeos
|
|
35895
|
-
* @chrome-platform linux
|
|
35896
|
-
* @chrome-platform mac
|
|
35897
|
-
* @chrome-platform win
|
|
35898
35915
|
*/
|
|
35899
35916
|
export namespace webNavigation {
|
|
35900
35917
|
|
package/index.d.ts
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
|
-
// Generated on Tue Sep
|
|
18
|
-
// Built at
|
|
17
|
+
// Generated on Tue Sep 23 2025 22:32:50 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 1ee791397a82522faf6bac7ffcc6180cbebad93b
|
|
19
19
|
|
|
20
20
|
// Includes MV3+ APIs only.
|
|
21
21
|
|
|
@@ -20801,6 +20801,27 @@ declare namespace chrome {
|
|
|
20801
20801
|
path: string;
|
|
20802
20802
|
}
|
|
20803
20803
|
|
|
20804
|
+
/**
|
|
20805
|
+
* @since Pending
|
|
20806
|
+
*/
|
|
20807
|
+
export interface PanelClosedInfo {
|
|
20808
|
+
|
|
20809
|
+
/**
|
|
20810
|
+
* The ID of the window where the side panel was closed. This is available for both global and tab-specific panels.
|
|
20811
|
+
*/
|
|
20812
|
+
windowId: number;
|
|
20813
|
+
|
|
20814
|
+
/**
|
|
20815
|
+
* The optional ID of the tab where the side panel was closed. This is provided only when the panel is tab-specific.
|
|
20816
|
+
*/
|
|
20817
|
+
tabId?: number;
|
|
20818
|
+
|
|
20819
|
+
/**
|
|
20820
|
+
* The path of the local resource within the extension package whose content is displayed in the panel.
|
|
20821
|
+
*/
|
|
20822
|
+
path: string;
|
|
20823
|
+
}
|
|
20824
|
+
|
|
20804
20825
|
/**
|
|
20805
20826
|
* Fired when the extension's side panel is opened.
|
|
20806
20827
|
*
|
|
@@ -28678,10 +28699,6 @@ declare namespace chrome {
|
|
|
28678
28699
|
* Use the `chrome.webNavigation` API to receive notifications about the status of navigation requests in-flight.
|
|
28679
28700
|
*
|
|
28680
28701
|
* @chrome-permission webNavigation
|
|
28681
|
-
* @chrome-platform chromeos
|
|
28682
|
-
* @chrome-platform linux
|
|
28683
|
-
* @chrome-platform mac
|
|
28684
|
-
* @chrome-platform win
|
|
28685
28702
|
*/
|
|
28686
28703
|
export namespace webNavigation {
|
|
28687
28704
|
|
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": "bb446e22a834cc2c"
|
|
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.378"
|
|
20
20
|
}
|