chrome-types 0.1.374 → 0.1.376
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 +19 -2
- package/index.d.ts +19 -2
- 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 Tue Sep 16 2025 22:31:53 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 3cfe84abeda8f35a27d0fe52cf9dba97c3d41a30
|
|
19
19
|
|
|
20
20
|
// Includes all types, including MV2 + Platform Apps APIs.
|
|
21
21
|
|
|
@@ -19205,6 +19205,10 @@ declare namespace chrome {
|
|
|
19205
19205
|
* @chrome-returns-extra since Chrome 88
|
|
19206
19206
|
* @since Chrome 77
|
|
19207
19207
|
* @chrome-manifest replacement_web_app
|
|
19208
|
+
* @chrome-platform chromeos
|
|
19209
|
+
* @chrome-platform linux
|
|
19210
|
+
* @chrome-platform mac
|
|
19211
|
+
* @chrome-platform win
|
|
19208
19212
|
*/
|
|
19209
19213
|
export function installReplacementWebApp(): Promise<void>;
|
|
19210
19214
|
|
|
@@ -19213,6 +19217,10 @@ declare namespace chrome {
|
|
|
19213
19217
|
*
|
|
19214
19218
|
* @since Chrome 77
|
|
19215
19219
|
* @chrome-manifest replacement_web_app
|
|
19220
|
+
* @chrome-platform chromeos
|
|
19221
|
+
* @chrome-platform linux
|
|
19222
|
+
* @chrome-platform mac
|
|
19223
|
+
* @chrome-platform win
|
|
19216
19224
|
*/
|
|
19217
19225
|
export function installReplacementWebApp(
|
|
19218
19226
|
|
|
@@ -26677,6 +26685,15 @@ declare namespace chrome {
|
|
|
26677
26685
|
path: string;
|
|
26678
26686
|
}
|
|
26679
26687
|
|
|
26688
|
+
/**
|
|
26689
|
+
* Fired when the extension's side panel is opened.
|
|
26690
|
+
*
|
|
26691
|
+
* @since Pending
|
|
26692
|
+
*/
|
|
26693
|
+
export const onOpened: events.Event<(
|
|
26694
|
+
info: PanelOpenedInfo,
|
|
26695
|
+
) => void>;
|
|
26696
|
+
|
|
26680
26697
|
/**
|
|
26681
26698
|
* Configures the side panel.
|
|
26682
26699
|
*
|
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 Tue Sep 16 2025 22:31:48 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 3cfe84abeda8f35a27d0fe52cf9dba97c3d41a30
|
|
19
19
|
|
|
20
20
|
// Includes MV3+ APIs only.
|
|
21
21
|
|
|
@@ -14570,6 +14570,10 @@ declare namespace chrome {
|
|
|
14570
14570
|
* @chrome-returns-extra since Chrome 88
|
|
14571
14571
|
* @since Chrome 77
|
|
14572
14572
|
* @chrome-manifest replacement_web_app
|
|
14573
|
+
* @chrome-platform chromeos
|
|
14574
|
+
* @chrome-platform linux
|
|
14575
|
+
* @chrome-platform mac
|
|
14576
|
+
* @chrome-platform win
|
|
14573
14577
|
*/
|
|
14574
14578
|
export function installReplacementWebApp(): Promise<void>;
|
|
14575
14579
|
|
|
@@ -14578,6 +14582,10 @@ declare namespace chrome {
|
|
|
14578
14582
|
*
|
|
14579
14583
|
* @since Chrome 77
|
|
14580
14584
|
* @chrome-manifest replacement_web_app
|
|
14585
|
+
* @chrome-platform chromeos
|
|
14586
|
+
* @chrome-platform linux
|
|
14587
|
+
* @chrome-platform mac
|
|
14588
|
+
* @chrome-platform win
|
|
14581
14589
|
*/
|
|
14582
14590
|
export function installReplacementWebApp(
|
|
14583
14591
|
|
|
@@ -20793,6 +20801,15 @@ declare namespace chrome {
|
|
|
20793
20801
|
path: string;
|
|
20794
20802
|
}
|
|
20795
20803
|
|
|
20804
|
+
/**
|
|
20805
|
+
* Fired when the extension's side panel is opened.
|
|
20806
|
+
*
|
|
20807
|
+
* @since Pending
|
|
20808
|
+
*/
|
|
20809
|
+
export const onOpened: events.Event<(
|
|
20810
|
+
info: PanelOpenedInfo,
|
|
20811
|
+
) => void>;
|
|
20812
|
+
|
|
20796
20813
|
/**
|
|
20797
20814
|
* Configures the side panel.
|
|
20798
20815
|
*
|
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": "a72a8c85497e5a2f"
|
|
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.376"
|
|
20
20
|
}
|