chrome-types 0.1.355 → 0.1.357
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 +132 -4
- package/index.d.ts +85 -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 Fri Jun 27 2025 22:33:50 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 9cdecf0f71c6df902469a9015c8cff2e28f4ab27
|
|
19
19
|
|
|
20
20
|
// Includes all types, including MV2 + Platform Apps APIs.
|
|
21
21
|
|
|
@@ -47,6 +47,10 @@ declare namespace chrome {
|
|
|
47
47
|
*
|
|
48
48
|
* @chrome-permission accessibilityFeatures.modify
|
|
49
49
|
* @chrome-permission accessibilityFeatures.read
|
|
50
|
+
* @chrome-platform chromeos
|
|
51
|
+
* @chrome-platform linux
|
|
52
|
+
* @chrome-platform mac
|
|
53
|
+
* @chrome-platform win
|
|
50
54
|
*/
|
|
51
55
|
export namespace accessibilityFeatures {
|
|
52
56
|
|
|
@@ -987,6 +991,10 @@ declare namespace chrome {
|
|
|
987
991
|
* Use the `chrome.app.runtime` API to manage the app lifecycle. The app runtime manages app installation, controls the event page, and can shut down the app at anytime.
|
|
988
992
|
*
|
|
989
993
|
* @chrome-platform-apps
|
|
994
|
+
* @chrome-platform chromeos
|
|
995
|
+
* @chrome-platform linux
|
|
996
|
+
* @chrome-platform mac
|
|
997
|
+
* @chrome-platform win
|
|
990
998
|
*/
|
|
991
999
|
export namespace app.runtime {
|
|
992
1000
|
|
|
@@ -1095,6 +1103,10 @@ declare namespace chrome {
|
|
|
1095
1103
|
* Use the `chrome.app.window` API to create windows. Windows have an optional frame with title bar and size controls. They are not associated with any Chrome browser windows. See the [Window State Sample](https://github.com/GoogleChrome/chrome-app-samples/tree/master/samples/window-state) for a demonstration of these options.
|
|
1096
1104
|
*
|
|
1097
1105
|
* @chrome-platform-apps
|
|
1106
|
+
* @chrome-platform chromeos
|
|
1107
|
+
* @chrome-platform linux
|
|
1108
|
+
* @chrome-platform mac
|
|
1109
|
+
* @chrome-platform win
|
|
1098
1110
|
*/
|
|
1099
1111
|
export namespace app.window {
|
|
1100
1112
|
|
|
@@ -1681,6 +1693,10 @@ declare namespace chrome {
|
|
|
1681
1693
|
* @since Chrome 43
|
|
1682
1694
|
* @chrome-permission appview
|
|
1683
1695
|
* @chrome-platform-apps
|
|
1696
|
+
* @chrome-platform chromeos
|
|
1697
|
+
* @chrome-platform linux
|
|
1698
|
+
* @chrome-platform mac
|
|
1699
|
+
* @chrome-platform win
|
|
1684
1700
|
*/
|
|
1685
1701
|
export namespace appviewTag {
|
|
1686
1702
|
|
|
@@ -2042,8 +2058,9 @@ declare namespace chrome {
|
|
|
2042
2058
|
* @chrome-manifest bluetooth
|
|
2043
2059
|
* @chrome-platform-apps
|
|
2044
2060
|
* @chrome-platform chromeos
|
|
2045
|
-
* @chrome-platform
|
|
2061
|
+
* @chrome-platform linux
|
|
2046
2062
|
* @chrome-platform mac
|
|
2063
|
+
* @chrome-platform win
|
|
2047
2064
|
*/
|
|
2048
2065
|
export namespace bluetooth {
|
|
2049
2066
|
|
|
@@ -3425,8 +3442,9 @@ declare namespace chrome {
|
|
|
3425
3442
|
* @chrome-manifest bluetooth
|
|
3426
3443
|
* @chrome-platform-apps
|
|
3427
3444
|
* @chrome-platform chromeos
|
|
3428
|
-
* @chrome-platform
|
|
3445
|
+
* @chrome-platform linux
|
|
3429
3446
|
* @chrome-platform mac
|
|
3447
|
+
* @chrome-platform win
|
|
3430
3448
|
*/
|
|
3431
3449
|
export namespace bluetoothSocket {
|
|
3432
3450
|
|
|
@@ -6095,6 +6113,10 @@ declare namespace chrome {
|
|
|
6095
6113
|
* Use the `chrome.contentSettings` API to change settings that control whether websites can use features such as cookies, JavaScript, and plugins. More generally speaking, content settings allow you to customize Chrome's behavior on a per-site basis instead of globally.
|
|
6096
6114
|
*
|
|
6097
6115
|
* @chrome-permission contentSettings
|
|
6116
|
+
* @chrome-platform chromeos
|
|
6117
|
+
* @chrome-platform linux
|
|
6118
|
+
* @chrome-platform mac
|
|
6119
|
+
* @chrome-platform win
|
|
6098
6120
|
*/
|
|
6099
6121
|
export namespace contentSettings {
|
|
6100
6122
|
|
|
@@ -7509,6 +7531,10 @@ declare namespace chrome {
|
|
|
7509
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.
|
|
7510
7532
|
*
|
|
7511
7533
|
* @chrome-permission debugger
|
|
7534
|
+
* @chrome-platform chromeos
|
|
7535
|
+
* @chrome-platform linux
|
|
7536
|
+
* @chrome-platform mac
|
|
7537
|
+
* @chrome-platform win
|
|
7512
7538
|
*/
|
|
7513
7539
|
namespace _debugger {
|
|
7514
7540
|
|
|
@@ -9083,6 +9109,10 @@ declare namespace chrome {
|
|
|
9083
9109
|
* @chrome-permission declarativeWebRequest
|
|
9084
9110
|
* @chrome-channel beta
|
|
9085
9111
|
* @chrome-max-manifest MV2
|
|
9112
|
+
* @chrome-platform chromeos
|
|
9113
|
+
* @chrome-platform linux
|
|
9114
|
+
* @chrome-platform mac
|
|
9115
|
+
* @chrome-platform win
|
|
9086
9116
|
*/
|
|
9087
9117
|
export namespace declarativeWebRequest {
|
|
9088
9118
|
|
|
@@ -9629,6 +9659,10 @@ declare namespace chrome {
|
|
|
9629
9659
|
* The Desktop Capture API captures the content of the screen, individual windows, or individual tabs.
|
|
9630
9660
|
*
|
|
9631
9661
|
* @chrome-permission desktopCapture
|
|
9662
|
+
* @chrome-platform chromeos
|
|
9663
|
+
* @chrome-platform linux
|
|
9664
|
+
* @chrome-platform mac
|
|
9665
|
+
* @chrome-platform win
|
|
9632
9666
|
*/
|
|
9633
9667
|
export namespace desktopCapture {
|
|
9634
9668
|
|
|
@@ -11285,6 +11319,10 @@ declare namespace chrome {
|
|
|
11285
11319
|
* Use the `chrome.downloads` API to programmatically initiate, monitor, manipulate, and search for downloads.
|
|
11286
11320
|
*
|
|
11287
11321
|
* @chrome-permission downloads
|
|
11322
|
+
* @chrome-platform chromeos
|
|
11323
|
+
* @chrome-platform linux
|
|
11324
|
+
* @chrome-platform mac
|
|
11325
|
+
* @chrome-platform win
|
|
11288
11326
|
*/
|
|
11289
11327
|
export namespace downloads {
|
|
11290
11328
|
|
|
@@ -13678,6 +13716,10 @@ declare namespace chrome {
|
|
|
13678
13716
|
* @chrome-permission fileSystem
|
|
13679
13717
|
* @chrome-platform-apps
|
|
13680
13718
|
* @chrome-disallow-service-workers
|
|
13719
|
+
* @chrome-platform chromeos
|
|
13720
|
+
* @chrome-platform linux
|
|
13721
|
+
* @chrome-platform mac
|
|
13722
|
+
* @chrome-platform win
|
|
13681
13723
|
*/
|
|
13682
13724
|
export namespace fileSystem {
|
|
13683
13725
|
|
|
@@ -15932,6 +15974,10 @@ declare namespace chrome {
|
|
|
15932
15974
|
*
|
|
15933
15975
|
* @chrome-permission hid
|
|
15934
15976
|
* @chrome-platform-apps
|
|
15977
|
+
* @chrome-platform chromeos
|
|
15978
|
+
* @chrome-platform linux
|
|
15979
|
+
* @chrome-platform mac
|
|
15980
|
+
* @chrome-platform win
|
|
15935
15981
|
*/
|
|
15936
15982
|
export namespace hid {
|
|
15937
15983
|
|
|
@@ -19302,6 +19348,10 @@ declare namespace chrome {
|
|
|
19302
19348
|
* @since Chrome 43
|
|
19303
19349
|
* @chrome-permission mdns
|
|
19304
19350
|
* @chrome-platform-apps
|
|
19351
|
+
* @chrome-platform chromeos
|
|
19352
|
+
* @chrome-platform linux
|
|
19353
|
+
* @chrome-platform mac
|
|
19354
|
+
* @chrome-platform win
|
|
19305
19355
|
*/
|
|
19306
19356
|
export namespace mdns {
|
|
19307
19357
|
|
|
@@ -22126,6 +22176,10 @@ declare namespace chrome {
|
|
|
22126
22176
|
* The omnibox API allows you to register a keyword with Google Chrome's address bar, which is also known as the omnibox.
|
|
22127
22177
|
*
|
|
22128
22178
|
* @chrome-manifest omnibox
|
|
22179
|
+
* @chrome-platform chromeos
|
|
22180
|
+
* @chrome-platform linux
|
|
22181
|
+
* @chrome-platform mac
|
|
22182
|
+
* @chrome-platform win
|
|
22129
22183
|
*/
|
|
22130
22184
|
export namespace omnibox {
|
|
22131
22185
|
|
|
@@ -22528,6 +22582,10 @@ declare namespace chrome {
|
|
|
22528
22582
|
* Use the `chrome.pageCapture` API to save a tab as MHTML.
|
|
22529
22583
|
*
|
|
22530
22584
|
* @chrome-permission pageCapture
|
|
22585
|
+
* @chrome-platform chromeos
|
|
22586
|
+
* @chrome-platform linux
|
|
22587
|
+
* @chrome-platform mac
|
|
22588
|
+
* @chrome-platform win
|
|
22531
22589
|
*/
|
|
22532
22590
|
export namespace pageCapture {
|
|
22533
22591
|
|
|
@@ -23047,6 +23105,10 @@ declare namespace chrome {
|
|
|
23047
23105
|
*
|
|
23048
23106
|
* @since Chrome 44
|
|
23049
23107
|
* @chrome-permission printerProvider
|
|
23108
|
+
* @chrome-platform chromeos
|
|
23109
|
+
* @chrome-platform linux
|
|
23110
|
+
* @chrome-platform mac
|
|
23111
|
+
* @chrome-platform win
|
|
23050
23112
|
*/
|
|
23051
23113
|
export namespace printerProvider {
|
|
23052
23114
|
|
|
@@ -23773,6 +23835,8 @@ declare namespace chrome {
|
|
|
23773
23835
|
|
|
23774
23836
|
/**
|
|
23775
23837
|
* The types of the browser processes.
|
|
23838
|
+
*
|
|
23839
|
+
* @chrome-enum "service\_worker" Obsolete, will never be returned.
|
|
23776
23840
|
*/
|
|
23777
23841
|
export type ProcessType = "browser" | "renderer" | "extension" | "notification" | "plugin" | "worker" | "nacl" | "service_worker" | "utility" | "gpu" | "other";
|
|
23778
23842
|
|
|
@@ -24012,6 +24076,10 @@ declare namespace chrome {
|
|
|
24012
24076
|
* Use the `chrome.proxy` API to manage Chrome's proxy settings. This API relies on the [ChromeSetting prototype of the type API](https://developer.chrome.com/docs/extensions/reference/api/types#type-ChromeSetting) for getting and setting the proxy configuration.
|
|
24013
24077
|
*
|
|
24014
24078
|
* @chrome-permission proxy
|
|
24079
|
+
* @chrome-platform chromeos
|
|
24080
|
+
* @chrome-platform linux
|
|
24081
|
+
* @chrome-platform mac
|
|
24082
|
+
* @chrome-platform win
|
|
24015
24083
|
*/
|
|
24016
24084
|
export namespace proxy {
|
|
24017
24085
|
|
|
@@ -25628,6 +25696,10 @@ declare namespace chrome {
|
|
|
25628
25696
|
*
|
|
25629
25697
|
* @since Chrome 87
|
|
25630
25698
|
* @chrome-permission search
|
|
25699
|
+
* @chrome-platform chromeos
|
|
25700
|
+
* @chrome-platform linux
|
|
25701
|
+
* @chrome-platform mac
|
|
25702
|
+
* @chrome-platform win
|
|
25631
25703
|
*/
|
|
25632
25704
|
export namespace search {
|
|
25633
25705
|
|
|
@@ -25682,6 +25754,10 @@ declare namespace chrome {
|
|
|
25682
25754
|
*
|
|
25683
25755
|
* @chrome-permission serial
|
|
25684
25756
|
* @chrome-platform-apps
|
|
25757
|
+
* @chrome-platform chromeos
|
|
25758
|
+
* @chrome-platform linux
|
|
25759
|
+
* @chrome-platform mac
|
|
25760
|
+
* @chrome-platform win
|
|
25685
25761
|
*/
|
|
25686
25762
|
export namespace serial {
|
|
25687
25763
|
|
|
@@ -26295,6 +26371,10 @@ declare namespace chrome {
|
|
|
26295
26371
|
* Use the `chrome.sessions` API to query and restore tabs and windows from a browsing session.
|
|
26296
26372
|
*
|
|
26297
26373
|
* @chrome-permission sessions
|
|
26374
|
+
* @chrome-platform chromeos
|
|
26375
|
+
* @chrome-platform linux
|
|
26376
|
+
* @chrome-platform mac
|
|
26377
|
+
* @chrome-platform win
|
|
26298
26378
|
*/
|
|
26299
26379
|
export namespace sessions {
|
|
26300
26380
|
|
|
@@ -26461,6 +26541,10 @@ declare namespace chrome {
|
|
|
26461
26541
|
* @since Chrome 114
|
|
26462
26542
|
* @chrome-permission sidePanel
|
|
26463
26543
|
* @chrome-min-manifest MV3
|
|
26544
|
+
* @chrome-platform chromeos
|
|
26545
|
+
* @chrome-platform linux
|
|
26546
|
+
* @chrome-platform mac
|
|
26547
|
+
* @chrome-platform win
|
|
26464
26548
|
*/
|
|
26465
26549
|
export namespace sidePanel {
|
|
26466
26550
|
|
|
@@ -26641,6 +26725,10 @@ declare namespace chrome {
|
|
|
26641
26725
|
*
|
|
26642
26726
|
* @chrome-permission socket
|
|
26643
26727
|
* @chrome-platform-apps
|
|
26728
|
+
* @chrome-platform chromeos
|
|
26729
|
+
* @chrome-platform linux
|
|
26730
|
+
* @chrome-platform mac
|
|
26731
|
+
* @chrome-platform win
|
|
26644
26732
|
*/
|
|
26645
26733
|
export namespace socket {
|
|
26646
26734
|
|
|
@@ -27272,6 +27360,10 @@ declare namespace chrome {
|
|
|
27272
27360
|
*
|
|
27273
27361
|
* @chrome-manifest sockets
|
|
27274
27362
|
* @chrome-platform-apps
|
|
27363
|
+
* @chrome-platform chromeos
|
|
27364
|
+
* @chrome-platform linux
|
|
27365
|
+
* @chrome-platform mac
|
|
27366
|
+
* @chrome-platform win
|
|
27275
27367
|
*/
|
|
27276
27368
|
export namespace sockets.tcp {
|
|
27277
27369
|
|
|
@@ -27795,6 +27887,10 @@ declare namespace chrome {
|
|
|
27795
27887
|
*
|
|
27796
27888
|
* @chrome-manifest sockets
|
|
27797
27889
|
* @chrome-platform-apps
|
|
27890
|
+
* @chrome-platform chromeos
|
|
27891
|
+
* @chrome-platform linux
|
|
27892
|
+
* @chrome-platform mac
|
|
27893
|
+
* @chrome-platform win
|
|
27798
27894
|
*/
|
|
27799
27895
|
export namespace sockets.tcpServer {
|
|
27800
27896
|
|
|
@@ -28133,6 +28229,10 @@ declare namespace chrome {
|
|
|
28133
28229
|
*
|
|
28134
28230
|
* @chrome-manifest sockets
|
|
28135
28231
|
* @chrome-platform-apps
|
|
28232
|
+
* @chrome-platform chromeos
|
|
28233
|
+
* @chrome-platform linux
|
|
28234
|
+
* @chrome-platform mac
|
|
28235
|
+
* @chrome-platform win
|
|
28136
28236
|
*/
|
|
28137
28237
|
export namespace sockets.udp {
|
|
28138
28238
|
|
|
@@ -29327,6 +29427,10 @@ declare namespace chrome {
|
|
|
29327
29427
|
* Use the `system.display` API to query display metadata.
|
|
29328
29428
|
*
|
|
29329
29429
|
* @chrome-permission system.display
|
|
29430
|
+
* @chrome-platform chromeos
|
|
29431
|
+
* @chrome-platform linux
|
|
29432
|
+
* @chrome-platform mac
|
|
29433
|
+
* @chrome-platform win
|
|
29330
29434
|
*/
|
|
29331
29435
|
export namespace system.display {
|
|
29332
29436
|
|
|
@@ -30125,6 +30229,10 @@ declare namespace chrome {
|
|
|
30125
30229
|
* Use the `chrome.system.storage` API to query storage device information and be notified when a removable storage device is attached and detached.
|
|
30126
30230
|
*
|
|
30127
30231
|
* @chrome-permission system.storage
|
|
30232
|
+
* @chrome-platform chromeos
|
|
30233
|
+
* @chrome-platform linux
|
|
30234
|
+
* @chrome-platform mac
|
|
30235
|
+
* @chrome-platform win
|
|
30128
30236
|
*/
|
|
30129
30237
|
export namespace system.storage {
|
|
30130
30238
|
|
|
@@ -30302,6 +30410,10 @@ declare namespace chrome {
|
|
|
30302
30410
|
* Use the `chrome.tabCapture` API to interact with tab media streams.
|
|
30303
30411
|
*
|
|
30304
30412
|
* @chrome-permission tabCapture
|
|
30413
|
+
* @chrome-platform chromeos
|
|
30414
|
+
* @chrome-platform linux
|
|
30415
|
+
* @chrome-platform mac
|
|
30416
|
+
* @chrome-platform win
|
|
30305
30417
|
*/
|
|
30306
30418
|
export namespace tabCapture {
|
|
30307
30419
|
|
|
@@ -30434,6 +30546,10 @@ declare namespace chrome {
|
|
|
30434
30546
|
* @since Chrome 89
|
|
30435
30547
|
* @chrome-permission tabGroups
|
|
30436
30548
|
* @chrome-min-manifest MV3
|
|
30549
|
+
* @chrome-platform chromeos
|
|
30550
|
+
* @chrome-platform linux
|
|
30551
|
+
* @chrome-platform mac
|
|
30552
|
+
* @chrome-platform win
|
|
30437
30553
|
*/
|
|
30438
30554
|
export namespace tabGroups {
|
|
30439
30555
|
|
|
@@ -33625,6 +33741,10 @@ declare namespace chrome {
|
|
|
33625
33741
|
*
|
|
33626
33742
|
* @chrome-permission usb
|
|
33627
33743
|
* @chrome-platform-apps
|
|
33744
|
+
* @chrome-platform chromeos
|
|
33745
|
+
* @chrome-platform linux
|
|
33746
|
+
* @chrome-platform mac
|
|
33747
|
+
* @chrome-platform win
|
|
33628
33748
|
*/
|
|
33629
33749
|
export namespace usb {
|
|
33630
33750
|
|
|
@@ -35641,6 +35761,10 @@ declare namespace chrome {
|
|
|
35641
35761
|
* Use the `chrome.webNavigation` API to receive notifications about the status of navigation requests in-flight.
|
|
35642
35762
|
*
|
|
35643
35763
|
* @chrome-permission webNavigation
|
|
35764
|
+
* @chrome-platform chromeos
|
|
35765
|
+
* @chrome-platform linux
|
|
35766
|
+
* @chrome-platform mac
|
|
35767
|
+
* @chrome-platform win
|
|
35644
35768
|
*/
|
|
35645
35769
|
export namespace webNavigation {
|
|
35646
35770
|
|
|
@@ -37800,6 +37924,10 @@ declare namespace chrome {
|
|
|
37800
37924
|
*
|
|
37801
37925
|
* @chrome-permission webview
|
|
37802
37926
|
* @chrome-platform-apps
|
|
37927
|
+
* @chrome-platform chromeos
|
|
37928
|
+
* @chrome-platform linux
|
|
37929
|
+
* @chrome-platform mac
|
|
37930
|
+
* @chrome-platform win
|
|
37803
37931
|
*/
|
|
37804
37932
|
export namespace webviewTag {
|
|
37805
37933
|
|
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 Fri Jun 27 2025 22:33:45 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 9cdecf0f71c6df902469a9015c8cff2e28f4ab27
|
|
19
19
|
|
|
20
20
|
// Includes MV3+ APIs only.
|
|
21
21
|
|
|
@@ -105,6 +105,10 @@ declare namespace chrome {
|
|
|
105
105
|
*
|
|
106
106
|
* @chrome-permission accessibilityFeatures.modify
|
|
107
107
|
* @chrome-permission accessibilityFeatures.read
|
|
108
|
+
* @chrome-platform chromeos
|
|
109
|
+
* @chrome-platform linux
|
|
110
|
+
* @chrome-platform mac
|
|
111
|
+
* @chrome-platform win
|
|
108
112
|
*/
|
|
109
113
|
export namespace accessibilityFeatures {
|
|
110
114
|
|
|
@@ -2861,6 +2865,10 @@ declare namespace chrome {
|
|
|
2861
2865
|
* Use the `chrome.contentSettings` API to change settings that control whether websites can use features such as cookies, JavaScript, and plugins. More generally speaking, content settings allow you to customize Chrome's behavior on a per-site basis instead of globally.
|
|
2862
2866
|
*
|
|
2863
2867
|
* @chrome-permission contentSettings
|
|
2868
|
+
* @chrome-platform chromeos
|
|
2869
|
+
* @chrome-platform linux
|
|
2870
|
+
* @chrome-platform mac
|
|
2871
|
+
* @chrome-platform win
|
|
2864
2872
|
*/
|
|
2865
2873
|
export namespace contentSettings {
|
|
2866
2874
|
|
|
@@ -4275,6 +4283,10 @@ declare namespace chrome {
|
|
|
4275
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.
|
|
4276
4284
|
*
|
|
4277
4285
|
* @chrome-permission debugger
|
|
4286
|
+
* @chrome-platform chromeos
|
|
4287
|
+
* @chrome-platform linux
|
|
4288
|
+
* @chrome-platform mac
|
|
4289
|
+
* @chrome-platform win
|
|
4278
4290
|
*/
|
|
4279
4291
|
namespace _debugger {
|
|
4280
4292
|
|
|
@@ -5846,6 +5858,10 @@ declare namespace chrome {
|
|
|
5846
5858
|
* The Desktop Capture API captures the content of the screen, individual windows, or individual tabs.
|
|
5847
5859
|
*
|
|
5848
5860
|
* @chrome-permission desktopCapture
|
|
5861
|
+
* @chrome-platform chromeos
|
|
5862
|
+
* @chrome-platform linux
|
|
5863
|
+
* @chrome-platform mac
|
|
5864
|
+
* @chrome-platform win
|
|
5849
5865
|
*/
|
|
5850
5866
|
export namespace desktopCapture {
|
|
5851
5867
|
|
|
@@ -7435,6 +7451,10 @@ declare namespace chrome {
|
|
|
7435
7451
|
* Use the `chrome.downloads` API to programmatically initiate, monitor, manipulate, and search for downloads.
|
|
7436
7452
|
*
|
|
7437
7453
|
* @chrome-permission downloads
|
|
7454
|
+
* @chrome-platform chromeos
|
|
7455
|
+
* @chrome-platform linux
|
|
7456
|
+
* @chrome-platform mac
|
|
7457
|
+
* @chrome-platform win
|
|
7438
7458
|
*/
|
|
7439
7459
|
export namespace downloads {
|
|
7440
7460
|
|
|
@@ -14693,6 +14713,10 @@ declare namespace chrome {
|
|
|
14693
14713
|
* @alpha
|
|
14694
14714
|
* @chrome-permission mdns
|
|
14695
14715
|
* @chrome-channel dev
|
|
14716
|
+
* @chrome-platform chromeos
|
|
14717
|
+
* @chrome-platform linux
|
|
14718
|
+
* @chrome-platform mac
|
|
14719
|
+
* @chrome-platform win
|
|
14696
14720
|
*/
|
|
14697
14721
|
export namespace mdns {
|
|
14698
14722
|
|
|
@@ -17181,6 +17205,10 @@ declare namespace chrome {
|
|
|
17181
17205
|
* The omnibox API allows you to register a keyword with Google Chrome's address bar, which is also known as the omnibox.
|
|
17182
17206
|
*
|
|
17183
17207
|
* @chrome-manifest omnibox
|
|
17208
|
+
* @chrome-platform chromeos
|
|
17209
|
+
* @chrome-platform linux
|
|
17210
|
+
* @chrome-platform mac
|
|
17211
|
+
* @chrome-platform win
|
|
17184
17212
|
*/
|
|
17185
17213
|
export namespace omnibox {
|
|
17186
17214
|
|
|
@@ -17303,6 +17331,10 @@ declare namespace chrome {
|
|
|
17303
17331
|
* Use the `chrome.pageCapture` API to save a tab as MHTML.
|
|
17304
17332
|
*
|
|
17305
17333
|
* @chrome-permission pageCapture
|
|
17334
|
+
* @chrome-platform chromeos
|
|
17335
|
+
* @chrome-platform linux
|
|
17336
|
+
* @chrome-platform mac
|
|
17337
|
+
* @chrome-platform win
|
|
17306
17338
|
*/
|
|
17307
17339
|
export namespace pageCapture {
|
|
17308
17340
|
|
|
@@ -17822,6 +17854,10 @@ declare namespace chrome {
|
|
|
17822
17854
|
*
|
|
17823
17855
|
* @since Chrome 44
|
|
17824
17856
|
* @chrome-permission printerProvider
|
|
17857
|
+
* @chrome-platform chromeos
|
|
17858
|
+
* @chrome-platform linux
|
|
17859
|
+
* @chrome-platform mac
|
|
17860
|
+
* @chrome-platform win
|
|
17825
17861
|
*/
|
|
17826
17862
|
export namespace printerProvider {
|
|
17827
17863
|
|
|
@@ -18548,6 +18584,8 @@ declare namespace chrome {
|
|
|
18548
18584
|
|
|
18549
18585
|
/**
|
|
18550
18586
|
* The types of the browser processes.
|
|
18587
|
+
*
|
|
18588
|
+
* @chrome-enum "service\_worker" Obsolete, will never be returned.
|
|
18551
18589
|
*/
|
|
18552
18590
|
export type ProcessType = "browser" | "renderer" | "extension" | "notification" | "plugin" | "worker" | "nacl" | "service_worker" | "utility" | "gpu" | "other";
|
|
18553
18591
|
|
|
@@ -18787,6 +18825,10 @@ declare namespace chrome {
|
|
|
18787
18825
|
* Use the `chrome.proxy` API to manage Chrome's proxy settings. This API relies on the [ChromeSetting prototype of the type API](https://developer.chrome.com/docs/extensions/reference/api/types#type-ChromeSetting) for getting and setting the proxy configuration.
|
|
18788
18826
|
*
|
|
18789
18827
|
* @chrome-permission proxy
|
|
18828
|
+
* @chrome-platform chromeos
|
|
18829
|
+
* @chrome-platform linux
|
|
18830
|
+
* @chrome-platform mac
|
|
18831
|
+
* @chrome-platform win
|
|
18790
18832
|
*/
|
|
18791
18833
|
export namespace proxy {
|
|
18792
18834
|
|
|
@@ -20392,6 +20434,10 @@ declare namespace chrome {
|
|
|
20392
20434
|
*
|
|
20393
20435
|
* @since Chrome 87
|
|
20394
20436
|
* @chrome-permission search
|
|
20437
|
+
* @chrome-platform chromeos
|
|
20438
|
+
* @chrome-platform linux
|
|
20439
|
+
* @chrome-platform mac
|
|
20440
|
+
* @chrome-platform win
|
|
20395
20441
|
*/
|
|
20396
20442
|
export namespace search {
|
|
20397
20443
|
|
|
@@ -20445,6 +20491,10 @@ declare namespace chrome {
|
|
|
20445
20491
|
* Use the `chrome.sessions` API to query and restore tabs and windows from a browsing session.
|
|
20446
20492
|
*
|
|
20447
20493
|
* @chrome-permission sessions
|
|
20494
|
+
* @chrome-platform chromeos
|
|
20495
|
+
* @chrome-platform linux
|
|
20496
|
+
* @chrome-platform mac
|
|
20497
|
+
* @chrome-platform win
|
|
20448
20498
|
*/
|
|
20449
20499
|
export namespace sessions {
|
|
20450
20500
|
|
|
@@ -20611,6 +20661,10 @@ declare namespace chrome {
|
|
|
20611
20661
|
* @since Chrome 114
|
|
20612
20662
|
* @chrome-permission sidePanel
|
|
20613
20663
|
* @chrome-min-manifest MV3
|
|
20664
|
+
* @chrome-platform chromeos
|
|
20665
|
+
* @chrome-platform linux
|
|
20666
|
+
* @chrome-platform mac
|
|
20667
|
+
* @chrome-platform win
|
|
20614
20668
|
*/
|
|
20615
20669
|
export namespace sidePanel {
|
|
20616
20670
|
|
|
@@ -20793,6 +20847,9 @@ declare namespace chrome {
|
|
|
20793
20847
|
* @chrome-manifest sockets
|
|
20794
20848
|
* @chrome-channel dev
|
|
20795
20849
|
* @chrome-platform chromeos
|
|
20850
|
+
* @chrome-platform linux
|
|
20851
|
+
* @chrome-platform mac
|
|
20852
|
+
* @chrome-platform win
|
|
20796
20853
|
*/
|
|
20797
20854
|
export namespace sockets.tcp {
|
|
20798
20855
|
|
|
@@ -21304,6 +21361,9 @@ declare namespace chrome {
|
|
|
21304
21361
|
* @chrome-manifest sockets
|
|
21305
21362
|
* @chrome-channel dev
|
|
21306
21363
|
* @chrome-platform chromeos
|
|
21364
|
+
* @chrome-platform linux
|
|
21365
|
+
* @chrome-platform mac
|
|
21366
|
+
* @chrome-platform win
|
|
21307
21367
|
*/
|
|
21308
21368
|
export namespace sockets.tcpServer {
|
|
21309
21369
|
|
|
@@ -21635,6 +21695,9 @@ declare namespace chrome {
|
|
|
21635
21695
|
* @chrome-manifest sockets
|
|
21636
21696
|
* @chrome-channel dev
|
|
21637
21697
|
* @chrome-platform chromeos
|
|
21698
|
+
* @chrome-platform linux
|
|
21699
|
+
* @chrome-platform mac
|
|
21700
|
+
* @chrome-platform win
|
|
21638
21701
|
*/
|
|
21639
21702
|
export namespace sockets.udp {
|
|
21640
21703
|
|
|
@@ -22556,6 +22619,10 @@ declare namespace chrome {
|
|
|
22556
22619
|
* Use the `system.display` API to query display metadata.
|
|
22557
22620
|
*
|
|
22558
22621
|
* @chrome-permission system.display
|
|
22622
|
+
* @chrome-platform chromeos
|
|
22623
|
+
* @chrome-platform linux
|
|
22624
|
+
* @chrome-platform mac
|
|
22625
|
+
* @chrome-platform win
|
|
22559
22626
|
*/
|
|
22560
22627
|
export namespace system.display {
|
|
22561
22628
|
|
|
@@ -23353,6 +23420,10 @@ declare namespace chrome {
|
|
|
23353
23420
|
* Use the `chrome.system.storage` API to query storage device information and be notified when a removable storage device is attached and detached.
|
|
23354
23421
|
*
|
|
23355
23422
|
* @chrome-permission system.storage
|
|
23423
|
+
* @chrome-platform chromeos
|
|
23424
|
+
* @chrome-platform linux
|
|
23425
|
+
* @chrome-platform mac
|
|
23426
|
+
* @chrome-platform win
|
|
23356
23427
|
*/
|
|
23357
23428
|
export namespace system.storage {
|
|
23358
23429
|
|
|
@@ -23530,6 +23601,10 @@ declare namespace chrome {
|
|
|
23530
23601
|
* Use the `chrome.tabCapture` API to interact with tab media streams.
|
|
23531
23602
|
*
|
|
23532
23603
|
* @chrome-permission tabCapture
|
|
23604
|
+
* @chrome-platform chromeos
|
|
23605
|
+
* @chrome-platform linux
|
|
23606
|
+
* @chrome-platform mac
|
|
23607
|
+
* @chrome-platform win
|
|
23533
23608
|
*/
|
|
23534
23609
|
export namespace tabCapture {
|
|
23535
23610
|
|
|
@@ -23662,6 +23737,10 @@ declare namespace chrome {
|
|
|
23662
23737
|
* @since Chrome 89
|
|
23663
23738
|
* @chrome-permission tabGroups
|
|
23664
23739
|
* @chrome-min-manifest MV3
|
|
23740
|
+
* @chrome-platform chromeos
|
|
23741
|
+
* @chrome-platform linux
|
|
23742
|
+
* @chrome-platform mac
|
|
23743
|
+
* @chrome-platform win
|
|
23665
23744
|
*/
|
|
23666
23745
|
export namespace tabGroups {
|
|
23667
23746
|
|
|
@@ -28473,6 +28552,10 @@ declare namespace chrome {
|
|
|
28473
28552
|
* Use the `chrome.webNavigation` API to receive notifications about the status of navigation requests in-flight.
|
|
28474
28553
|
*
|
|
28475
28554
|
* @chrome-permission webNavigation
|
|
28555
|
+
* @chrome-platform chromeos
|
|
28556
|
+
* @chrome-platform linux
|
|
28557
|
+
* @chrome-platform mac
|
|
28558
|
+
* @chrome-platform win
|
|
28476
28559
|
*/
|
|
28477
28560
|
export namespace webNavigation {
|
|
28478
28561
|
|
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": "d9222069473b6b63"
|
|
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.357"
|
|
20
20
|
}
|