chrome-types 0.1.164 → 0.1.165

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.
Files changed (3) hide show
  1. package/_all.d.ts +315 -333
  2. package/index.d.ts +240 -258
  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 Thu Jan 19 2023 22:30:07 GMT+0000 (Coordinated Universal Time)
18
- // Built at 264375da24bfa534433b1f5b573ba161dd31c98d
17
+ // Generated on Fri Jan 20 2023 22:29:38 GMT+0000 (Coordinated Universal Time)
18
+ // Built at e0c02c14061c3cfe015742c870bb574da293f8f3
19
19
 
20
20
  // Includes all types, including MV2 + Platform Apps APIs.
21
21
 
@@ -227,8 +227,6 @@ declare namespace chrome {
227
227
 
228
228
  /**
229
229
  * Sets the title of the action. This shows up in the tooltip.
230
- *
231
- * @chrome-returns-extra since Pending
232
230
  */
233
231
  export function setTitle(
234
232
 
@@ -269,8 +267,6 @@ declare namespace chrome {
269
267
 
270
268
  /**
271
269
  * Gets the title of the action.
272
- *
273
- * @chrome-returns-extra since Pending
274
270
  */
275
271
  export function getTitle(
276
272
 
@@ -292,7 +288,7 @@ declare namespace chrome {
292
288
  /**
293
289
  * Sets the icon for the action. The icon can be specified either as the path to an image file or as the pixel data from a canvas element, or as dictionary of either one of those. Either the **path** or the **imageData** property must be specified.
294
290
  *
295
- * @chrome-returns-extra since Pending
291
+ * @chrome-returns-extra since Chrome 96
296
292
  */
297
293
  export function setIcon(
298
294
 
@@ -343,8 +339,6 @@ declare namespace chrome {
343
339
 
344
340
  /**
345
341
  * Sets the HTML document to be opened as a popup when the user clicks on the action's icon.
346
- *
347
- * @chrome-returns-extra since Pending
348
342
  */
349
343
  export function setPopup(
350
344
 
@@ -385,8 +379,6 @@ declare namespace chrome {
385
379
 
386
380
  /**
387
381
  * Gets the html document set as the popup for this action.
388
- *
389
- * @chrome-returns-extra since Pending
390
382
  */
391
383
  export function getPopup(
392
384
 
@@ -407,8 +399,6 @@ declare namespace chrome {
407
399
 
408
400
  /**
409
401
  * Sets the badge text for the action. The badge is displayed on top of the icon.
410
- *
411
- * @chrome-returns-extra since Pending
412
402
  */
413
403
  export function setBadgeText(
414
404
 
@@ -449,8 +439,6 @@ declare namespace chrome {
449
439
 
450
440
  /**
451
441
  * Gets the badge text of the action. If no tab is specified, the non-tab-specific badge text is returned. If [displayActionCountAsBadgeText](https://developer.chrome.com/docs/extensions/reference/declarativeNetRequest/#setExtensionActionOptions) is enabled, a placeholder text will be returned unless the [declarativeNetRequestFeedback](https://developer.chrome.com/docs/extensions/declare_permissions#declarativeNetRequestFeedback) permission is present or tab-specific badge text was provided.
452
- *
453
- * @chrome-returns-extra since Pending
454
442
  */
455
443
  export function getBadgeText(
456
444
 
@@ -471,8 +459,6 @@ declare namespace chrome {
471
459
 
472
460
  /**
473
461
  * Sets the background color for the badge.
474
- *
475
- * @chrome-returns-extra since Pending
476
462
  */
477
463
  export function setBadgeBackgroundColor(
478
464
 
@@ -513,8 +499,6 @@ declare namespace chrome {
513
499
 
514
500
  /**
515
501
  * Gets the background color of the action.
516
- *
517
- * @chrome-returns-extra since Pending
518
502
  */
519
503
  export function getBadgeBackgroundColor(
520
504
 
@@ -604,7 +588,6 @@ declare namespace chrome {
604
588
  /**
605
589
  * Enables the action for a tab. By default, actions are enabled.
606
590
  *
607
- * @chrome-returns-extra since Pending
608
591
  * @param tabId The id of the tab for which you want to modify the action.
609
592
  */
610
593
  export function enable(
@@ -627,7 +610,6 @@ declare namespace chrome {
627
610
  /**
628
611
  * Disables the action for a tab.
629
612
  *
630
- * @chrome-returns-extra since Pending
631
613
  * @param tabId The id of the tab for which you want to modify the action.
632
614
  */
633
615
  export function disable(
@@ -650,7 +632,6 @@ declare namespace chrome {
650
632
  /**
651
633
  * Retrieves the state of whether the extension action is enabled for a tab (or globally if no tab is provided).
652
634
  *
653
- * @chrome-returns-extra since Pending
654
635
  * @param tabId The id of the tab for which you want check enabled status.
655
636
  * @since Chrome 108
656
637
  */
@@ -680,7 +661,6 @@ declare namespace chrome {
680
661
  /**
681
662
  * Returns the user-specified settings relating to an extension's action.
682
663
  *
683
- * @chrome-returns-extra since Pending
684
664
  * @since Chrome 91
685
665
  */
686
666
  export function getUserSettings(): Promise<UserSettings>;
@@ -700,7 +680,6 @@ declare namespace chrome {
700
680
  /**
701
681
  * Opens the extension's popup.
702
682
  *
703
- * @chrome-returns-extra since Pending
704
683
  * @param options Specifies options for opening the popup.
705
684
  * @since Chrome 99
706
685
  */
@@ -852,7 +831,7 @@ declare namespace chrome {
852
831
  /**
853
832
  * Retrieves details about the specified alarm.
854
833
  *
855
- * @chrome-returns-extra since Pending
834
+ * @chrome-returns-extra since Chrome 91
856
835
  * @param name The name of the alarm to get. Defaults to the empty string.
857
836
  */
858
837
  export function get(
@@ -877,7 +856,7 @@ declare namespace chrome {
877
856
  /**
878
857
  * Gets an array of all the alarms.
879
858
  *
880
- * @chrome-returns-extra since Pending
859
+ * @chrome-returns-extra since Chrome 91
881
860
  */
882
861
  export function getAll(): Promise<Alarm[]>;
883
862
 
@@ -894,7 +873,7 @@ declare namespace chrome {
894
873
  /**
895
874
  * Clears the alarm with the given name.
896
875
  *
897
- * @chrome-returns-extra since Pending
876
+ * @chrome-returns-extra since Chrome 91
898
877
  * @param name The name of the alarm to clear. Defaults to the empty string.
899
878
  */
900
879
  export function clear(
@@ -919,7 +898,7 @@ declare namespace chrome {
919
898
  /**
920
899
  * Clears all alarms.
921
900
  *
922
- * @chrome-returns-extra since Pending
901
+ * @chrome-returns-extra since Chrome 91
923
902
  */
924
903
  export function clearAll(): Promise<boolean>;
925
904
 
@@ -965,7 +944,7 @@ declare namespace chrome {
965
944
  export function getIsInstalled(): boolean;
966
945
 
967
946
  /**
968
- * @chrome-returns-extra since Pending
947
+ * @chrome-returns-extra since Chrome 100
969
948
  */
970
949
  export function installState(): Promise<InstallState>;
971
950
 
@@ -3762,7 +3741,7 @@ declare namespace chrome {
3762
3741
  /**
3763
3742
  * Get information about the Bluetooth adapter.
3764
3743
  *
3765
- * @chrome-returns-extra since Pending
3744
+ * @chrome-returns-extra since Chrome 91
3766
3745
  */
3767
3746
  export function getAdapterState(): Promise<AdapterState>;
3768
3747
 
@@ -3784,7 +3763,7 @@ declare namespace chrome {
3784
3763
  /**
3785
3764
  * Get information about a Bluetooth device known to the system.
3786
3765
  *
3787
- * @chrome-returns-extra since Pending
3766
+ * @chrome-returns-extra since Chrome 91
3788
3767
  * @param deviceAddress Address of device to get.
3789
3768
  */
3790
3769
  export function getDevice(
@@ -3813,7 +3792,7 @@ declare namespace chrome {
3813
3792
  /**
3814
3793
  * Get a list of Bluetooth devices known to the system, including paired and recently discovered devices.
3815
3794
  *
3816
- * @chrome-returns-extra since Pending
3795
+ * @chrome-returns-extra since Chrome 91
3817
3796
  * @param filter Some criteria to filter the list of returned bluetooth devices. If the filter is not set or set to `{}`, returned device list will contain all bluetooth devices. Right now this is only supported in ChromeOS, for other platforms, a full list is returned.
3818
3797
  */
3819
3798
  export function getDevices(
@@ -3850,7 +3829,7 @@ declare namespace chrome {
3850
3829
  *
3851
3830
  * Discovery will fail to start if this application has already called startDiscovery. Discovery can be resource intensive: stopDiscovery should be called as soon as possible.
3852
3831
  *
3853
- * @chrome-returns-extra since Pending
3832
+ * @chrome-returns-extra since Chrome 91
3854
3833
  */
3855
3834
  export function startDiscovery(): Promise<void>;
3856
3835
 
@@ -3869,7 +3848,7 @@ declare namespace chrome {
3869
3848
  /**
3870
3849
  * Stop discovery.
3871
3850
  *
3872
- * @chrome-returns-extra since Pending
3851
+ * @chrome-returns-extra since Chrome 91
3873
3852
  */
3874
3853
  export function stopDiscovery(): Promise<void>;
3875
3854
 
@@ -4220,7 +4199,7 @@ declare namespace chrome {
4220
4199
  /**
4221
4200
  * Establishes a connection between the application and the device with the given address. A device may be already connected and its GATT services available without calling `connect`, however, an app that wants to access GATT services of a device should call this function to make sure that a connection to the device is maintained. If the device is not connected, all GATT services of the device will be discovered after a successful call to `connect`.
4222
4201
  *
4223
- * @chrome-returns-extra since Pending
4202
+ * @chrome-returns-extra since Chrome 91
4224
4203
  * @param deviceAddress The Bluetooth address of the remote device to which a GATT connection should be opened.
4225
4204
  * @param properties Connection properties (optional).
4226
4205
  */
@@ -4250,7 +4229,7 @@ declare namespace chrome {
4250
4229
  /**
4251
4230
  * Closes the app's connection to the device with the given address. Note that this will not always destroy the physical link itself, since there may be other apps with open connections.
4252
4231
  *
4253
- * @chrome-returns-extra since Pending
4232
+ * @chrome-returns-extra since Chrome 91
4254
4233
  * @param deviceAddress The Bluetooth address of the remote device.
4255
4234
  */
4256
4235
  export function disconnect(
@@ -4274,7 +4253,7 @@ declare namespace chrome {
4274
4253
  /**
4275
4254
  * Get the GATT service with the given instance ID.
4276
4255
  *
4277
- * @chrome-returns-extra since Pending
4256
+ * @chrome-returns-extra since Chrome 91
4278
4257
  * @param serviceId The instance ID of the requested GATT service.
4279
4258
  */
4280
4259
  export function getService(
@@ -4300,7 +4279,7 @@ declare namespace chrome {
4300
4279
  /**
4301
4280
  * Create a locally hosted GATT service. This service can be registered to be available on a local GATT server. This function is only available if the app has both the bluetooth:low\_energy and the bluetooth:peripheral permissions set to true. The peripheral permission may not be available to all apps.
4302
4281
  *
4303
- * @chrome-returns-extra since Pending
4282
+ * @chrome-returns-extra since Chrome 91
4304
4283
  * @param service The service to create.
4305
4284
  * @since Chrome 52
4306
4285
  */
@@ -4330,7 +4309,7 @@ declare namespace chrome {
4330
4309
  *
4331
4310
  * _Note:_ If service discovery is not yet complete on the device, this API will return a subset (possibly empty) of services. A work around is to add a time based delay and/or call repeatedly until the expected number of services is returned.
4332
4311
  *
4333
- * @chrome-returns-extra since Pending
4312
+ * @chrome-returns-extra since Chrome 91
4334
4313
  * @param deviceAddress The Bluetooth address of the remote device whose GATT services should be returned.
4335
4314
  */
4336
4315
  export function getServices(
@@ -4358,7 +4337,7 @@ declare namespace chrome {
4358
4337
  /**
4359
4338
  * Get the GATT characteristic with the given instance ID that belongs to the given GATT service, if the characteristic exists.
4360
4339
  *
4361
- * @chrome-returns-extra since Pending
4340
+ * @chrome-returns-extra since Chrome 91
4362
4341
  * @param characteristicId The instance ID of the requested GATT characteristic.
4363
4342
  */
4364
4343
  export function getCharacteristic(
@@ -4384,7 +4363,7 @@ declare namespace chrome {
4384
4363
  /**
4385
4364
  * Create a locally hosted GATT characteristic. This characteristic must be hosted under a valid service. If the service ID is not valid, the lastError will be set. This function is only available if the app has both the bluetooth:low\_energy and the bluetooth:peripheral permissions set to true. The peripheral permission may not be available to all apps.
4386
4365
  *
4387
- * @chrome-returns-extra since Pending
4366
+ * @chrome-returns-extra since Chrome 91
4388
4367
  * @param characteristic The characteristic to create.
4389
4368
  * @param serviceId ID of the service to create this characteristic for.
4390
4369
  * @since Chrome 52
@@ -4418,7 +4397,7 @@ declare namespace chrome {
4418
4397
  /**
4419
4398
  * Get a list of all discovered GATT characteristics that belong to the given service.
4420
4399
  *
4421
- * @chrome-returns-extra since Pending
4400
+ * @chrome-returns-extra since Chrome 91
4422
4401
  * @param serviceId The instance ID of the GATT service whose characteristics should be returned.
4423
4402
  */
4424
4403
  export function getCharacteristics(
@@ -4444,7 +4423,7 @@ declare namespace chrome {
4444
4423
  /**
4445
4424
  * Get a list of GATT services that are included by the given service.
4446
4425
  *
4447
- * @chrome-returns-extra since Pending
4426
+ * @chrome-returns-extra since Chrome 91
4448
4427
  * @param serviceId The instance ID of the GATT service whose included services should be returned.
4449
4428
  */
4450
4429
  export function getIncludedServices(
@@ -4470,7 +4449,7 @@ declare namespace chrome {
4470
4449
  /**
4471
4450
  * Get the GATT characteristic descriptor with the given instance ID.
4472
4451
  *
4473
- * @chrome-returns-extra since Pending
4452
+ * @chrome-returns-extra since Chrome 91
4474
4453
  * @param descriptorId The instance ID of the requested GATT characteristic descriptor.
4475
4454
  */
4476
4455
  export function getDescriptor(
@@ -4496,7 +4475,7 @@ declare namespace chrome {
4496
4475
  /**
4497
4476
  * Create a locally hosted GATT descriptor. This descriptor must be hosted under a valid characteristic. If the characteristic ID is not valid, the lastError will be set. This function is only available if the app has both the bluetooth:low\_energy and the bluetooth:peripheral permissions set to true. The peripheral permission may not be available to all apps.
4498
4477
  *
4499
- * @chrome-returns-extra since Pending
4478
+ * @chrome-returns-extra since Chrome 91
4500
4479
  * @param descriptor The descriptor to create.
4501
4480
  * @param characteristicId ID of the characteristic to create this descriptor for.
4502
4481
  * @since Chrome 52
@@ -4530,7 +4509,7 @@ declare namespace chrome {
4530
4509
  /**
4531
4510
  * Get a list of GATT characteristic descriptors that belong to the given characteristic.
4532
4511
  *
4533
- * @chrome-returns-extra since Pending
4512
+ * @chrome-returns-extra since Chrome 91
4534
4513
  * @param characteristicId The instance ID of the GATT characteristic whose descriptors should be returned.
4535
4514
  */
4536
4515
  export function getDescriptors(
@@ -4556,7 +4535,7 @@ declare namespace chrome {
4556
4535
  /**
4557
4536
  * Retrieve the value of a specified characteristic from a remote peripheral.
4558
4537
  *
4559
- * @chrome-returns-extra since Pending
4538
+ * @chrome-returns-extra since Chrome 91
4560
4539
  * @param characteristicId The instance ID of the GATT characteristic whose value should be read from the remote device.
4561
4540
  */
4562
4541
  export function readCharacteristicValue(
@@ -4582,7 +4561,7 @@ declare namespace chrome {
4582
4561
  /**
4583
4562
  * Write the value of a specified characteristic from a remote peripheral.
4584
4563
  *
4585
- * @chrome-returns-extra since Pending
4564
+ * @chrome-returns-extra since Chrome 91
4586
4565
  * @param characteristicId The instance ID of the GATT characteristic whose value should be written to.
4587
4566
  * @param value The value that should be sent to the remote characteristic as part of the write request.
4588
4567
  */
@@ -4612,7 +4591,7 @@ declare namespace chrome {
4612
4591
  /**
4613
4592
  * Enable value notifications/indications from the specified characteristic. Once enabled, an application can listen to notifications using the {@link onCharacteristicValueChanged} event.
4614
4593
  *
4615
- * @chrome-returns-extra since Pending
4594
+ * @chrome-returns-extra since Chrome 91
4616
4595
  * @param characteristicId The instance ID of the GATT characteristic that notifications should be enabled on.
4617
4596
  * @param properties Notification session properties (optional).
4618
4597
  */
@@ -4642,7 +4621,7 @@ declare namespace chrome {
4642
4621
  /**
4643
4622
  * Disable value notifications/indications from the specified characteristic. After a successful call, the application will stop receiving notifications/indications from this characteristic.
4644
4623
  *
4645
- * @chrome-returns-extra since Pending
4624
+ * @chrome-returns-extra since Chrome 91
4646
4625
  * @param characteristicId The instance ID of the GATT characteristic on which this app's notification session should be stopped.
4647
4626
  */
4648
4627
  export function stopCharacteristicNotifications(
@@ -4666,7 +4645,7 @@ declare namespace chrome {
4666
4645
  /**
4667
4646
  * Notify a remote device of a new value for a characteristic. If the shouldIndicate flag in the notification object is true, an indication will be sent instead of a notification. Note, the characteristic needs to correctly set the 'notify' or 'indicate' property during creation for this call to succeed. This function is only available if the app has both the bluetooth:low\_energy and the bluetooth:peripheral permissions set to true. The peripheral permission may not be available to all apps.
4668
4647
  *
4669
- * @chrome-returns-extra since Pending
4648
+ * @chrome-returns-extra since Chrome 91
4670
4649
  * @param characteristicId The characteristic to send the notication for.
4671
4650
  * @since Chrome 52
4672
4651
  */
@@ -4696,7 +4675,7 @@ declare namespace chrome {
4696
4675
  /**
4697
4676
  * Retrieve the value of a specified characteristic descriptor from a remote peripheral.
4698
4677
  *
4699
- * @chrome-returns-extra since Pending
4678
+ * @chrome-returns-extra since Chrome 91
4700
4679
  * @param descriptorId The instance ID of the GATT characteristic descriptor whose value should be read from the remote device.
4701
4680
  */
4702
4681
  export function readDescriptorValue(
@@ -4722,7 +4701,7 @@ declare namespace chrome {
4722
4701
  /**
4723
4702
  * Write the value of a specified characteristic descriptor from a remote peripheral.
4724
4703
  *
4725
- * @chrome-returns-extra since Pending
4704
+ * @chrome-returns-extra since Chrome 91
4726
4705
  * @param descriptorId The instance ID of the GATT characteristic descriptor whose value should be written to.
4727
4706
  * @param value The value that should be sent to the remote descriptor as part of the write request.
4728
4707
  */
@@ -4752,7 +4731,7 @@ declare namespace chrome {
4752
4731
  /**
4753
4732
  * Register the given service with the local GATT server. If the service ID is invalid, the lastError will be set. This function is only available if the app has both the bluetooth:low\_energy and the bluetooth:peripheral permissions set to true. The peripheral permission may not be available to all apps.
4754
4733
  *
4755
- * @chrome-returns-extra since Pending
4734
+ * @chrome-returns-extra since Chrome 91
4756
4735
  * @param serviceId Unique ID of a created service.
4757
4736
  * @since Chrome 52
4758
4737
  */
@@ -4778,7 +4757,7 @@ declare namespace chrome {
4778
4757
  /**
4779
4758
  * Unregister the given service with the local GATT server. If the service ID is invalid, the lastError will be set. This function is only available if the app has both the bluetooth:low\_energy and the bluetooth:peripheral permissions set to true. The peripheral permission may not be available to all apps.
4780
4759
  *
4781
- * @chrome-returns-extra since Pending
4760
+ * @chrome-returns-extra since Chrome 91
4782
4761
  * @param serviceId Unique ID of a current registered service.
4783
4762
  * @since Chrome 52
4784
4763
  */
@@ -4804,7 +4783,7 @@ declare namespace chrome {
4804
4783
  /**
4805
4784
  * Remove the specified service, unregistering it if it was registered. If the service ID is invalid, the lastError will be set. This function is only available if the app has both the bluetooth:low\_energy and the bluetooth:peripheral permissions set to true. The peripheral permission may not be available to all apps.
4806
4785
  *
4807
- * @chrome-returns-extra since Pending
4786
+ * @chrome-returns-extra since Chrome 91
4808
4787
  * @param serviceId Unique ID of a current registered service.
4809
4788
  * @since Chrome 52
4810
4789
  */
@@ -4830,7 +4809,7 @@ declare namespace chrome {
4830
4809
  /**
4831
4810
  * Create an advertisement and register it for advertising. To call this function, the app must have the bluetooth:low\_energy and bluetooth:peripheral permissions set to true. Additionally this API is only available to auto launched apps in Kiosk Mode or by setting the '--enable-ble-advertising-in-apps' command-line switch. See https://developer.chrome.com/apps/manifest/bluetooth Note: On some hardware, central and peripheral modes at the same time is supported but on hardware that doesn't support this, making this call will switch the device to peripheral mode. In the case of hardware which does not support both central and peripheral mode, attempting to use the device in both modes will lead to undefined behavior or prevent other central-role applications from behaving correctly (including the discovery of Bluetooth Low Energy devices).
4832
4811
  *
4833
- * @chrome-returns-extra since Pending
4812
+ * @chrome-returns-extra since Chrome 91
4834
4813
  * @param advertisement The advertisement to advertise.
4835
4814
  * @since Chrome 47
4836
4815
  */
@@ -4858,7 +4837,7 @@ declare namespace chrome {
4858
4837
  /**
4859
4838
  * Unregisters an advertisement and stops its advertising. If the advertisement fails to unregister the only way to stop advertising might be to restart the device.
4860
4839
  *
4861
- * @chrome-returns-extra since Pending
4840
+ * @chrome-returns-extra since Chrome 91
4862
4841
  * @param advertisementId Id of the advertisement to unregister.
4863
4842
  * @since Chrome 47
4864
4843
  */
@@ -4884,7 +4863,7 @@ declare namespace chrome {
4884
4863
  /**
4885
4864
  * Resets advertising on the current device. It will unregister and stop all existing advertisements.
4886
4865
  *
4887
- * @chrome-returns-extra since Pending
4866
+ * @chrome-returns-extra since Chrome 91
4888
4867
  * @since Chrome 61
4889
4868
  */
4890
4869
  export function resetAdvertising(): Promise<void>;
@@ -4903,7 +4882,7 @@ declare namespace chrome {
4903
4882
  /**
4904
4883
  * Set's the interval betweeen two consecutive advertisements. Note: This is a best effort. The actual interval may vary non-trivially from the requested intervals. On some hardware, there is a minimum interval of 100ms. The minimum and maximum values cannot exceed the the range allowed by the Bluetooth 4.2 specification.
4905
4884
  *
4906
- * @chrome-returns-extra since Pending
4885
+ * @chrome-returns-extra since Chrome 91
4907
4886
  * @param minInterval Minimum interval between advertisments (in milliseconds). This cannot be lower than 20ms (as per the spec).
4908
4887
  * @param maxInterval Maximum interval between advertisments (in milliseconds). This cannot be more than 10240ms (as per the spec).
4909
4888
  * @since Chrome 55
@@ -5148,7 +5127,7 @@ declare namespace chrome {
5148
5127
  /**
5149
5128
  * Creates a Bluetooth socket.
5150
5129
  *
5151
- * @chrome-returns-extra since Pending
5130
+ * @chrome-returns-extra since Chrome 91
5152
5131
  * @param properties The socket properties (optional).
5153
5132
  */
5154
5133
  export function create(
@@ -5177,7 +5156,7 @@ declare namespace chrome {
5177
5156
  /**
5178
5157
  * Updates the socket properties.
5179
5158
  *
5180
- * @chrome-returns-extra since Pending
5159
+ * @chrome-returns-extra since Chrome 91
5181
5160
  * @param socketId The socket identifier.
5182
5161
  * @param properties The properties to update.
5183
5162
  */
@@ -5207,7 +5186,7 @@ declare namespace chrome {
5207
5186
  /**
5208
5187
  * Enables or disables a connected socket from receiving messages from its peer, or a listening socket from accepting new connections. The default value is "false". Pausing a connected socket is typically used by an application to throttle data sent by its peer. When a connected socket is paused, no `onReceive`event is raised. When a socket is connected and un-paused, `onReceive` events are raised again when messages are received. When a listening socket is paused, new connections are accepted until its backlog is full then additional connection requests are refused. `onAccept` events are raised only when the socket is un-paused.
5209
5188
  *
5210
- * @chrome-returns-extra since Pending
5189
+ * @chrome-returns-extra since Chrome 91
5211
5190
  */
5212
5191
  export function setPaused(
5213
5192
 
@@ -5233,7 +5212,7 @@ declare namespace chrome {
5233
5212
  /**
5234
5213
  * Listen for connections using the RFCOMM protocol.
5235
5214
  *
5236
- * @chrome-returns-extra since Pending
5215
+ * @chrome-returns-extra since Chrome 91
5237
5216
  * @param socketId The socket identifier.
5238
5217
  * @param uuid Service UUID to listen on.
5239
5218
  * @param options Optional additional options for the service.
@@ -5269,7 +5248,7 @@ declare namespace chrome {
5269
5248
  /**
5270
5249
  * Listen for connections using the L2CAP protocol.
5271
5250
  *
5272
- * @chrome-returns-extra since Pending
5251
+ * @chrome-returns-extra since Chrome 91
5273
5252
  * @param socketId The socket identifier.
5274
5253
  * @param uuid Service UUID to listen on.
5275
5254
  * @param options Optional additional options for the service.
@@ -5305,7 +5284,7 @@ declare namespace chrome {
5305
5284
  /**
5306
5285
  * Connects the socket to a remote Bluetooth device. When the `connect` operation completes successfully, `onReceive` events are raised when data is received from the peer. If a network error occur while the runtime is receiving packets, a `onReceiveError` event is raised, at which point no more `onReceive` event will be raised for this socket until the `setPaused(false)` method is called.
5307
5286
  *
5308
- * @chrome-returns-extra since Pending
5287
+ * @chrome-returns-extra since Chrome 91
5309
5288
  * @param socketId The socket identifier.
5310
5289
  * @param address The address of the Bluetooth device.
5311
5290
  * @param uuid The UUID of the service to connect to.
@@ -5341,7 +5320,7 @@ declare namespace chrome {
5341
5320
  /**
5342
5321
  * Disconnects the socket. The socket identifier remains valid.
5343
5322
  *
5344
- * @chrome-returns-extra since Pending
5323
+ * @chrome-returns-extra since Chrome 91
5345
5324
  * @param socketId The socket identifier.
5346
5325
  */
5347
5326
  export function disconnect(
@@ -5365,7 +5344,7 @@ declare namespace chrome {
5365
5344
  /**
5366
5345
  * Disconnects and destroys the socket. Each socket created should be closed after use. The socket id is no longer valid as soon at the function is called. However, the socket is guaranteed to be closed only when the callback is invoked.
5367
5346
  *
5368
- * @chrome-returns-extra since Pending
5347
+ * @chrome-returns-extra since Chrome 91
5369
5348
  * @param socketId The socket identifier.
5370
5349
  */
5371
5350
  export function close(
@@ -5389,7 +5368,7 @@ declare namespace chrome {
5389
5368
  /**
5390
5369
  * Sends data on the given Bluetooth socket.
5391
5370
  *
5392
- * @chrome-returns-extra since Pending
5371
+ * @chrome-returns-extra since Chrome 91
5393
5372
  * @param socketId The socket identifier.
5394
5373
  * @param data The data to send.
5395
5374
  */
@@ -5424,7 +5403,7 @@ declare namespace chrome {
5424
5403
  /**
5425
5404
  * Retrieves the state of the given socket.
5426
5405
  *
5427
- * @chrome-returns-extra since Pending
5406
+ * @chrome-returns-extra since Chrome 91
5428
5407
  * @param socketId The socket identifier.
5429
5408
  */
5430
5409
  export function getInfo(
@@ -5453,7 +5432,7 @@ declare namespace chrome {
5453
5432
  /**
5454
5433
  * Retrieves the list of currently opened sockets owned by the application.
5455
5434
  *
5456
- * @chrome-returns-extra since Pending
5435
+ * @chrome-returns-extra since Chrome 91
5457
5436
  */
5458
5437
  export function getSockets(): Promise<SocketInfo[]>;
5459
5438
 
@@ -5642,7 +5621,7 @@ declare namespace chrome {
5642
5621
  /**
5643
5622
  * Retrieves the specified BookmarkTreeNode(s).
5644
5623
  *
5645
- * @chrome-returns-extra since Pending
5624
+ * @chrome-returns-extra since Chrome 90
5646
5625
  * @param idOrIdList A single string-valued id, or an array of string-valued ids
5647
5626
  */
5648
5627
  export function get(
@@ -5667,7 +5646,7 @@ declare namespace chrome {
5667
5646
  /**
5668
5647
  * Retrieves the children of the specified BookmarkTreeNode id.
5669
5648
  *
5670
- * @chrome-returns-extra since Pending
5649
+ * @chrome-returns-extra since Chrome 90
5671
5650
  */
5672
5651
  export function getChildren(
5673
5652
 
@@ -5689,7 +5668,7 @@ declare namespace chrome {
5689
5668
  /**
5690
5669
  * Retrieves the recently added bookmarks.
5691
5670
  *
5692
- * @chrome-returns-extra since Pending
5671
+ * @chrome-returns-extra since Chrome 90
5693
5672
  * @param numberOfItems The maximum number of items to return.
5694
5673
  */
5695
5674
  export function getRecent(
@@ -5714,7 +5693,7 @@ declare namespace chrome {
5714
5693
  /**
5715
5694
  * Retrieves the entire Bookmarks hierarchy.
5716
5695
  *
5717
- * @chrome-returns-extra since Pending
5696
+ * @chrome-returns-extra since Chrome 90
5718
5697
  */
5719
5698
  export function getTree(): Promise<BookmarkTreeNode[]>;
5720
5699
 
@@ -5731,7 +5710,7 @@ declare namespace chrome {
5731
5710
  /**
5732
5711
  * Retrieves part of the Bookmarks hierarchy, starting at the specified node.
5733
5712
  *
5734
- * @chrome-returns-extra since Pending
5713
+ * @chrome-returns-extra since Chrome 90
5735
5714
  * @param id The ID of the root of the subtree to retrieve.
5736
5715
  */
5737
5716
  export function getSubTree(
@@ -5756,7 +5735,7 @@ declare namespace chrome {
5756
5735
  /**
5757
5736
  * Searches for BookmarkTreeNodes matching the given query. Queries specified with an object produce BookmarkTreeNodes matching all specified properties.
5758
5737
  *
5759
- * @chrome-returns-extra since Pending
5738
+ * @chrome-returns-extra since Chrome 90
5760
5739
  * @param query Either a string of words and quoted phrases that are matched against bookmark URLs and titles, or an object. If an object, the properties `query`, `url`, and `title` may be specified and bookmarks matching all specified properties will be produced.
5761
5740
  */
5762
5741
  export function search(
@@ -5813,7 +5792,7 @@ declare namespace chrome {
5813
5792
  /**
5814
5793
  * Creates a bookmark or folder under the specified parentId. If url is NULL or missing, it will be a folder.
5815
5794
  *
5816
- * @chrome-returns-extra since Pending
5795
+ * @chrome-returns-extra since Chrome 90
5817
5796
  */
5818
5797
  export function create(
5819
5798
 
@@ -5835,7 +5814,7 @@ declare namespace chrome {
5835
5814
  /**
5836
5815
  * Moves the specified BookmarkTreeNode to the provided location.
5837
5816
  *
5838
- * @chrome-returns-extra since Pending
5817
+ * @chrome-returns-extra since Chrome 90
5839
5818
  */
5840
5819
  export function move(
5841
5820
 
@@ -5871,7 +5850,7 @@ declare namespace chrome {
5871
5850
  /**
5872
5851
  * Updates the properties of a bookmark or folder. Specify only the properties that you want to change; unspecified properties will be left unchanged. **Note:** Currently, only 'title' and 'url' are supported.
5873
5852
  *
5874
- * @chrome-returns-extra since Pending
5853
+ * @chrome-returns-extra since Chrome 90
5875
5854
  */
5876
5855
  export function update(
5877
5856
 
@@ -5907,7 +5886,7 @@ declare namespace chrome {
5907
5886
  /**
5908
5887
  * Removes a bookmark or an empty bookmark folder.
5909
5888
  *
5910
- * @chrome-returns-extra since Pending
5889
+ * @chrome-returns-extra since Chrome 90
5911
5890
  */
5912
5891
  export function remove(
5913
5892
 
@@ -5927,7 +5906,7 @@ declare namespace chrome {
5927
5906
  /**
5928
5907
  * Recursively removes a bookmark folder.
5929
5908
  *
5930
- * @chrome-returns-extra since Pending
5909
+ * @chrome-returns-extra since Chrome 90
5931
5910
  */
5932
5911
  export function removeTree(
5933
5912
 
@@ -6011,7 +5990,7 @@ declare namespace chrome {
6011
5990
  /**
6012
5991
  * Sets the title of the browser action. This title appears in the tooltip.
6013
5992
  *
6014
- * @chrome-returns-extra since Pending
5993
+ * @chrome-returns-extra since Chrome 88
6015
5994
  */
6016
5995
  export function setTitle(
6017
5996
 
@@ -6056,7 +6035,7 @@ declare namespace chrome {
6056
6035
  /**
6057
6036
  * Gets the title of the browser action.
6058
6037
  *
6059
- * @chrome-returns-extra since Pending
6038
+ * @chrome-returns-extra since Chrome 88
6060
6039
  */
6061
6040
  export function getTitle(
6062
6041
 
@@ -6104,7 +6083,7 @@ declare namespace chrome {
6104
6083
  /**
6105
6084
  * Sets the HTML document to be opened as a popup when the user clicks the browser action icon.
6106
6085
  *
6107
- * @chrome-returns-extra since Pending
6086
+ * @chrome-returns-extra since Chrome 88
6108
6087
  */
6109
6088
  export function setPopup(
6110
6089
 
@@ -6149,7 +6128,7 @@ declare namespace chrome {
6149
6128
  /**
6150
6129
  * Gets the HTML document that is set as the popup for this browser action.
6151
6130
  *
6152
- * @chrome-returns-extra since Pending
6131
+ * @chrome-returns-extra since Chrome 88
6153
6132
  */
6154
6133
  export function getPopup(
6155
6134
 
@@ -6171,7 +6150,7 @@ declare namespace chrome {
6171
6150
  /**
6172
6151
  * Sets the badge text for the browser action. The badge is displayed on top of the icon.
6173
6152
  *
6174
- * @chrome-returns-extra since Pending
6153
+ * @chrome-returns-extra since Chrome 88
6175
6154
  */
6176
6155
  export function setBadgeText(
6177
6156
 
@@ -6216,7 +6195,7 @@ declare namespace chrome {
6216
6195
  /**
6217
6196
  * Gets the badge text of the browser action. If no tab is specified, the non-tab-specific badge text is returned.
6218
6197
  *
6219
- * @chrome-returns-extra since Pending
6198
+ * @chrome-returns-extra since Chrome 88
6220
6199
  */
6221
6200
  export function getBadgeText(
6222
6201
 
@@ -6238,7 +6217,7 @@ declare namespace chrome {
6238
6217
  /**
6239
6218
  * Sets the background color for the badge.
6240
6219
  *
6241
- * @chrome-returns-extra since Pending
6220
+ * @chrome-returns-extra since Chrome 88
6242
6221
  */
6243
6222
  export function setBadgeBackgroundColor(
6244
6223
 
@@ -6283,7 +6262,7 @@ declare namespace chrome {
6283
6262
  /**
6284
6263
  * Gets the background color of the browser action.
6285
6264
  *
6286
- * @chrome-returns-extra since Pending
6265
+ * @chrome-returns-extra since Chrome 88
6287
6266
  */
6288
6267
  export function getBadgeBackgroundColor(
6289
6268
 
@@ -6305,7 +6284,7 @@ declare namespace chrome {
6305
6284
  /**
6306
6285
  * Enables the browser action for a tab. Defaults to enabled.
6307
6286
  *
6308
- * @chrome-returns-extra since Pending
6287
+ * @chrome-returns-extra since Chrome 88
6309
6288
  * @param tabId The ID of the tab for which to modify the browser action.
6310
6289
  */
6311
6290
  export function enable(
@@ -6331,7 +6310,7 @@ declare namespace chrome {
6331
6310
  /**
6332
6311
  * Disables the browser action for a tab.
6333
6312
  *
6334
- * @chrome-returns-extra since Pending
6313
+ * @chrome-returns-extra since Chrome 88
6335
6314
  * @param tabId The ID of the tab for which to modify the browser action.
6336
6315
  */
6337
6316
  export function disable(
@@ -6500,7 +6479,7 @@ declare namespace chrome {
6500
6479
  /**
6501
6480
  * Reports which types of data are currently selected in the 'Clear browsing data' settings UI. Note: some of the data types included in this API are not available in the settings UI, and some UI settings control more than one data type listed here.
6502
6481
  *
6503
- * @chrome-returns-extra since Pending
6482
+ * @chrome-returns-extra since Chrome 96
6504
6483
  */
6505
6484
  export function settings(): Promise<{
6506
6485
 
@@ -6543,7 +6522,7 @@ declare namespace chrome {
6543
6522
  /**
6544
6523
  * Clears various types of browsing data stored in a user's profile.
6545
6524
  *
6546
- * @chrome-returns-extra since Pending
6525
+ * @chrome-returns-extra since Chrome 96
6547
6526
  * @param dataToRemove The set of data types to remove.
6548
6527
  */
6549
6528
  export function remove(
@@ -6571,7 +6550,7 @@ declare namespace chrome {
6571
6550
  /**
6572
6551
  * Clears websites' appcache data.
6573
6552
  *
6574
- * @chrome-returns-extra since Pending
6553
+ * @chrome-returns-extra since Chrome 96
6575
6554
  */
6576
6555
  export function removeAppcache(
6577
6556
 
@@ -6593,7 +6572,7 @@ declare namespace chrome {
6593
6572
  /**
6594
6573
  * Clears the browser's cache.
6595
6574
  *
6596
- * @chrome-returns-extra since Pending
6575
+ * @chrome-returns-extra since Chrome 96
6597
6576
  */
6598
6577
  export function removeCache(
6599
6578
 
@@ -6615,7 +6594,7 @@ declare namespace chrome {
6615
6594
  /**
6616
6595
  * Clears websites' cache storage data.
6617
6596
  *
6618
- * @chrome-returns-extra since Pending
6597
+ * @chrome-returns-extra since Chrome 96
6619
6598
  * @since Chrome 72
6620
6599
  */
6621
6600
  export function removeCacheStorage(
@@ -6639,7 +6618,7 @@ declare namespace chrome {
6639
6618
  /**
6640
6619
  * Clears the browser's cookies and server-bound certificates modified within a particular timeframe.
6641
6620
  *
6642
- * @chrome-returns-extra since Pending
6621
+ * @chrome-returns-extra since Chrome 96
6643
6622
  */
6644
6623
  export function removeCookies(
6645
6624
 
@@ -6661,7 +6640,7 @@ declare namespace chrome {
6661
6640
  /**
6662
6641
  * Clears the browser's list of downloaded files (_not_ the downloaded files themselves).
6663
6642
  *
6664
- * @chrome-returns-extra since Pending
6643
+ * @chrome-returns-extra since Chrome 96
6665
6644
  */
6666
6645
  export function removeDownloads(
6667
6646
 
@@ -6683,7 +6662,7 @@ declare namespace chrome {
6683
6662
  /**
6684
6663
  * Clears websites' file system data.
6685
6664
  *
6686
- * @chrome-returns-extra since Pending
6665
+ * @chrome-returns-extra since Chrome 96
6687
6666
  */
6688
6667
  export function removeFileSystems(
6689
6668
 
@@ -6705,7 +6684,7 @@ declare namespace chrome {
6705
6684
  /**
6706
6685
  * Clears the browser's stored form data (autofill).
6707
6686
  *
6708
- * @chrome-returns-extra since Pending
6687
+ * @chrome-returns-extra since Chrome 96
6709
6688
  */
6710
6689
  export function removeFormData(
6711
6690
 
@@ -6727,7 +6706,7 @@ declare namespace chrome {
6727
6706
  /**
6728
6707
  * Clears the browser's history.
6729
6708
  *
6730
- * @chrome-returns-extra since Pending
6709
+ * @chrome-returns-extra since Chrome 96
6731
6710
  */
6732
6711
  export function removeHistory(
6733
6712
 
@@ -6749,7 +6728,7 @@ declare namespace chrome {
6749
6728
  /**
6750
6729
  * Clears websites' IndexedDB data.
6751
6730
  *
6752
- * @chrome-returns-extra since Pending
6731
+ * @chrome-returns-extra since Chrome 96
6753
6732
  */
6754
6733
  export function removeIndexedDB(
6755
6734
 
@@ -6771,7 +6750,7 @@ declare namespace chrome {
6771
6750
  /**
6772
6751
  * Clears websites' local storage data.
6773
6752
  *
6774
- * @chrome-returns-extra since Pending
6753
+ * @chrome-returns-extra since Chrome 96
6775
6754
  */
6776
6755
  export function removeLocalStorage(
6777
6756
 
@@ -6793,7 +6772,7 @@ declare namespace chrome {
6793
6772
  /**
6794
6773
  * Clears plugins' data.
6795
6774
  *
6796
- * @chrome-returns-extra since Pending
6775
+ * @chrome-returns-extra since Chrome 96
6797
6776
  * @deprecated Support for Flash has been removed. This function has no effect.
6798
6777
  * @chrome-deprecated-since Chrome 88
6799
6778
  */
@@ -6819,7 +6798,7 @@ declare namespace chrome {
6819
6798
  /**
6820
6799
  * Clears the browser's stored passwords.
6821
6800
  *
6822
- * @chrome-returns-extra since Pending
6801
+ * @chrome-returns-extra since Chrome 96
6823
6802
  */
6824
6803
  export function removePasswords(
6825
6804
 
@@ -6841,7 +6820,7 @@ declare namespace chrome {
6841
6820
  /**
6842
6821
  * Clears websites' service workers.
6843
6822
  *
6844
- * @chrome-returns-extra since Pending
6823
+ * @chrome-returns-extra since Chrome 96
6845
6824
  * @since Chrome 72
6846
6825
  */
6847
6826
  export function removeServiceWorkers(
@@ -6865,7 +6844,7 @@ declare namespace chrome {
6865
6844
  /**
6866
6845
  * Clears websites' WebSQL data.
6867
6846
  *
6868
- * @chrome-returns-extra since Pending
6847
+ * @chrome-returns-extra since Chrome 96
6869
6848
  */
6870
6849
  export function removeWebSQL(
6871
6850
 
@@ -7185,7 +7164,7 @@ declare namespace chrome {
7185
7164
  /**
7186
7165
  * Requests the PIN from the user. Only one ongoing request at a time is allowed. The requests issued while another flow is ongoing are rejected. It's the extension's responsibility to try again later if another flow is in progress.
7187
7166
  *
7188
- * @chrome-returns-extra since Pending
7167
+ * @chrome-returns-extra since Chrome 96
7189
7168
  * @param details Contains the details about the requested dialog.
7190
7169
  * @since Chrome 57
7191
7170
  */
@@ -7213,7 +7192,7 @@ declare namespace chrome {
7213
7192
  /**
7214
7193
  * Stops the pin request started by the {@link requestPin} function.
7215
7194
  *
7216
- * @chrome-returns-extra since Pending
7195
+ * @chrome-returns-extra since Chrome 96
7217
7196
  * @param details Contains the details about the reason for stopping the request flow.
7218
7197
  * @since Chrome 57
7219
7198
  */
@@ -7241,7 +7220,7 @@ declare namespace chrome {
7241
7220
  *
7242
7221
  * The extension should call this function after initialization and on every change in the set of currently available certificates. The extension should also call this function in response to {@link onCertificatesUpdateRequested} every time this event is received.
7243
7222
  *
7244
- * @chrome-returns-extra since Pending
7223
+ * @chrome-returns-extra since Chrome 96
7245
7224
  * @param details The certificates to set. Invalid certificates will be ignored.
7246
7225
  * @since Chrome 86
7247
7226
  */
@@ -7271,7 +7250,7 @@ declare namespace chrome {
7271
7250
  *
7272
7251
  * The extension must eventually call this function for every {@link onSignatureRequested} event; the API implementation will stop waiting for this call after some time and respond with a timeout error when this function is called.
7273
7252
  *
7274
- * @chrome-returns-extra since Pending
7253
+ * @chrome-returns-extra since Chrome 96
7275
7254
  * @since Chrome 86
7276
7255
  */
7277
7256
  export function reportSignature(
@@ -7363,7 +7342,7 @@ declare namespace chrome {
7363
7342
  /**
7364
7343
  * Sets image data to clipboard.
7365
7344
  *
7366
- * @chrome-returns-extra since Pending
7345
+ * @chrome-returns-extra since Chrome 91
7367
7346
  * @param imageData The encoded image data.
7368
7347
  * @param type The type of image being passed.
7369
7348
  * @param additionalItems Additional data items for describing image data. The callback is called with `chrome.runtime.lastError` set to error code if there is an error. Requires clipboard and clipboardWrite permissions.
@@ -7451,7 +7430,7 @@ declare namespace chrome {
7451
7430
  /**
7452
7431
  * Returns all the registered extension commands for this extension and their shortcut (if active).
7453
7432
  *
7454
- * @chrome-returns-extra since Pending
7433
+ * @chrome-returns-extra since Chrome 96
7455
7434
  */
7456
7435
  export function getAll(): Promise<Command[]>;
7457
7436
 
@@ -7577,7 +7556,7 @@ declare namespace chrome {
7577
7556
  /**
7578
7557
  * Clear all content setting rules set by this extension.
7579
7558
  *
7580
- * @chrome-returns-extra since Pending
7559
+ * @chrome-returns-extra since Chrome 96
7581
7560
  */
7582
7561
  clear(
7583
7562
 
@@ -7609,7 +7588,7 @@ declare namespace chrome {
7609
7588
  /**
7610
7589
  * Gets the current content setting for a given pair of URLs.
7611
7590
  *
7612
- * @chrome-returns-extra since Pending
7591
+ * @chrome-returns-extra since Chrome 96
7613
7592
  */
7614
7593
  get(
7615
7594
 
@@ -7685,7 +7664,7 @@ declare namespace chrome {
7685
7664
  /**
7686
7665
  * Applies a new content setting rule.
7687
7666
  *
7688
- * @chrome-returns-extra since Pending
7667
+ * @chrome-returns-extra since Chrome 96
7689
7668
  */
7690
7669
  set(
7691
7670
 
@@ -7755,7 +7734,7 @@ declare namespace chrome {
7755
7734
  ): void;
7756
7735
 
7757
7736
  /**
7758
- * @chrome-returns-extra since Pending
7737
+ * @chrome-returns-extra since Chrome 96
7759
7738
  */
7760
7739
  getResourceIdentifiers(): Promise<ResourceIdentifier[] | undefined>;
7761
7740
 
@@ -8358,7 +8337,7 @@ declare namespace chrome {
8358
8337
  /**
8359
8338
  * Retrieves information about a single cookie. If more than one cookie of the same name exists for the given URL, the one with the longest path will be returned. For cookies with the same path length, the cookie with the earliest creation time will be returned.
8360
8339
  *
8361
- * @chrome-returns-extra since Pending
8340
+ * @chrome-returns-extra since Chrome 88
8362
8341
  */
8363
8342
  export function get(
8364
8343
 
@@ -8383,7 +8362,7 @@ declare namespace chrome {
8383
8362
  /**
8384
8363
  * Retrieves all cookies from a single cookie store that match the given information. The cookies returned will be sorted, with those with the longest path first. If multiple cookies have the same path length, those with the earliest creation time will be first.
8385
8364
  *
8386
- * @chrome-returns-extra since Pending
8365
+ * @chrome-returns-extra since Chrome 88
8387
8366
  * @param details Information to filter the cookies being retrieved.
8388
8367
  */
8389
8368
  export function getAll(
@@ -8483,7 +8462,7 @@ declare namespace chrome {
8483
8462
  /**
8484
8463
  * Sets a cookie with the given cookie data; may overwrite equivalent cookies if they exist.
8485
8464
  *
8486
- * @chrome-returns-extra since Pending
8465
+ * @chrome-returns-extra since Chrome 88
8487
8466
  * @param details Details about the cookie being set.
8488
8467
  */
8489
8468
  export function set(
@@ -8617,7 +8596,7 @@ declare namespace chrome {
8617
8596
  /**
8618
8597
  * Deletes a cookie by name.
8619
8598
  *
8620
- * @chrome-returns-extra since Pending
8599
+ * @chrome-returns-extra since Chrome 88
8621
8600
  */
8622
8601
  export function remove(
8623
8602
 
@@ -8674,7 +8653,7 @@ declare namespace chrome {
8674
8653
  /**
8675
8654
  * Lists all existing cookie stores.
8676
8655
  *
8677
- * @chrome-returns-extra since Pending
8656
+ * @chrome-returns-extra since Chrome 88
8678
8657
  */
8679
8658
  export function getAllCookieStores(): Promise<CookieStore[]>;
8680
8659
 
@@ -8813,7 +8792,7 @@ declare namespace chrome {
8813
8792
  /**
8814
8793
  * Attaches debugger to the given target.
8815
8794
  *
8816
- * @chrome-returns-extra since Pending
8795
+ * @chrome-returns-extra since Chrome 96
8817
8796
  * @param target Debugging target to which you want to attach.
8818
8797
  * @param requiredVersion Required debugging protocol version ("0.1"). One can only attach to the debuggee with matching major version and greater or equal minor version. List of the protocol versions can be obtained [here](https://developer.chrome.com/devtools/docs/debugger-protocol).
8819
8798
  */
@@ -8843,7 +8822,7 @@ declare namespace chrome {
8843
8822
  /**
8844
8823
  * Detaches debugger from the given target.
8845
8824
  *
8846
- * @chrome-returns-extra since Pending
8825
+ * @chrome-returns-extra since Chrome 96
8847
8826
  * @param target Debugging target from which you want to detach.
8848
8827
  */
8849
8828
  export function detach(
@@ -8867,7 +8846,7 @@ declare namespace chrome {
8867
8846
  /**
8868
8847
  * Sends given command to the debugging target.
8869
8848
  *
8870
- * @chrome-returns-extra since Pending
8849
+ * @chrome-returns-extra since Chrome 96
8871
8850
  * @param target Debugging target to which you want to send the command.
8872
8851
  * @param method Method name. Should be one of the methods defined by the [remote debugging protocol](https://developer.chrome.com/devtools/docs/debugger-protocol).
8873
8852
  * @param commandParams JSON object with request parameters. This object must conform to the remote debugging params scheme for given method.
@@ -8908,7 +8887,7 @@ declare namespace chrome {
8908
8887
  /**
8909
8888
  * Returns the list of available debug targets.
8910
8889
  *
8911
- * @chrome-returns-extra since Pending
8890
+ * @chrome-returns-extra since Chrome 96
8912
8891
  */
8913
8892
  export function getTargets(): Promise<TargetInfo[]>;
8914
8893
 
@@ -9820,7 +9799,7 @@ declare namespace chrome {
9820
9799
  * * Static rules specified as part of the extension package can not be removed using this function.
9821
9800
  * * {@link MAX_NUMBER_OF_DYNAMIC_AND_SESSION_RULES} is the maximum number of combined dynamic and session rules an extension can add.
9822
9801
  *
9823
- * @chrome-returns-extra since Pending
9802
+ * @chrome-returns-extra since Chrome 91
9824
9803
  */
9825
9804
  export function updateDynamicRules(
9826
9805
 
@@ -9853,7 +9832,7 @@ declare namespace chrome {
9853
9832
  /**
9854
9833
  * Returns the current set of dynamic rules for the extension. Callers can optionally filter the list of fetched rules by specifying a `filter`.
9855
9834
  *
9856
- * @chrome-returns-extra since Pending
9835
+ * @chrome-returns-extra since Chrome 91
9857
9836
  * @param filter An object to filter the list of fetched rules.
9858
9837
  */
9859
9838
  export function getDynamicRules(
@@ -9889,7 +9868,7 @@ declare namespace chrome {
9889
9868
  * * These rules are not persisted across sessions and are backed in memory.
9890
9869
  * * {@link MAX_NUMBER_OF_DYNAMIC_AND_SESSION_RULES} is the maximum number of combined dynamic and session rules an extension can add.
9891
9870
  *
9892
- * @chrome-returns-extra since Pending
9871
+ * @chrome-returns-extra since Chrome 91
9893
9872
  * @since Chrome 90
9894
9873
  */
9895
9874
  export function updateSessionRules(
@@ -9917,7 +9896,7 @@ declare namespace chrome {
9917
9896
  /**
9918
9897
  * Returns the current set of session scoped rules for the extension. Callers can optionally filter the list of fetched rules by specifying a `filter`.
9919
9898
  *
9920
- * @chrome-returns-extra since Pending
9899
+ * @chrome-returns-extra since Chrome 91
9921
9900
  * @param filter An object to filter the list of fetched rules.
9922
9901
  * @since Chrome 90
9923
9902
  */
@@ -9952,7 +9931,7 @@ declare namespace chrome {
9952
9931
  * Updates the set of enabled static rulesets for the extension. The rulesets with IDs listed in `options.disableRulesetIds` are first removed, and then the rulesets listed in `options.enableRulesetIds` are added.
9953
9932
  * Note that the set of enabled static rulesets is persisted across sessions but not across extension updates, i.e. the `rule_resources` manifest key will determine the set of enabled static rulesets on each extension update.
9954
9933
  *
9955
- * @chrome-returns-extra since Pending
9934
+ * @chrome-returns-extra since Chrome 91
9956
9935
  */
9957
9936
  export function updateEnabledRulesets(
9958
9937
 
@@ -9981,7 +9960,7 @@ declare namespace chrome {
9981
9960
  /**
9982
9961
  * Returns the ids for the current set of enabled static rulesets.
9983
9962
  *
9984
- * @chrome-returns-extra since Pending
9963
+ * @chrome-returns-extra since Chrome 91
9985
9964
  */
9986
9965
  export function getEnabledRulesets(): Promise<string[]>;
9987
9966
 
@@ -10000,7 +9979,7 @@ declare namespace chrome {
10000
9979
  /**
10001
9980
  * Returns all rules matched for the extension. Callers can optionally filter the list of matched rules by specifying a `filter`. This method is only available to extensions with the `declarativeNetRequestFeedback` permission or having the `activeTab` permission granted for the `tabId` specified in `filter`. Note: Rules not associated with an active document that were matched more than five minutes ago will not be returned.
10002
9981
  *
10003
- * @chrome-returns-extra since Pending
9982
+ * @chrome-returns-extra since Chrome 91
10004
9983
  * @param filter An object to filter the list of matched rules.
10005
9984
  */
10006
9985
  export function getMatchedRules(
@@ -10026,7 +10005,7 @@ declare namespace chrome {
10026
10005
  /**
10027
10006
  * Configures if the action count for tabs should be displayed as the extension action's badge text and provides a way for that action count to be incremented.
10028
10007
  *
10029
- * @chrome-returns-extra since Pending
10008
+ * @chrome-returns-extra since Chrome 91
10030
10009
  * @since Chrome 88
10031
10010
  */
10032
10011
  export function setExtensionActionOptions(
@@ -10052,7 +10031,7 @@ declare namespace chrome {
10052
10031
  /**
10053
10032
  * Checks if the given regular expression will be supported as a `regexFilter` rule condition.
10054
10033
  *
10055
- * @chrome-returns-extra since Pending
10034
+ * @chrome-returns-extra since Chrome 91
10056
10035
  * @param regexOptions The regular expression to check.
10057
10036
  * @since Chrome 87
10058
10037
  */
@@ -10080,7 +10059,7 @@ declare namespace chrome {
10080
10059
  /**
10081
10060
  * Returns the number of static rules an extension can enable before the [global static rule limit](https://developer.chrome.com/docs/extensions/reference/declarativeNetRequest/#global-static-rule-limit) is reached.
10082
10061
  *
10083
- * @chrome-returns-extra since Pending
10062
+ * @chrome-returns-extra since Chrome 91
10084
10063
  * @since Chrome 89
10085
10064
  */
10086
10065
  export function getAvailableStaticRuleCount(): Promise<number>;
@@ -10100,7 +10079,6 @@ declare namespace chrome {
10100
10079
  /**
10101
10080
  * Checks if any of the extension's declarativeNetRequest rules would match a hypothetical request. Note: Only available for unpacked extensions as this is only intended to be used during extension development.
10102
10081
  *
10103
- * @chrome-returns-extra since Pending
10104
10082
  * @since Chrome 103
10105
10083
  */
10106
10084
  export function testMatchOutcome(
@@ -11502,7 +11480,7 @@ declare namespace chrome {
11502
11480
  /**
11503
11481
  * Performs a document scan. On success, the PNG data will be sent to the callback.
11504
11482
  *
11505
- * @chrome-returns-extra since Pending
11483
+ * @chrome-returns-extra since Chrome 96
11506
11484
  * @param options Object containing scan parameters.
11507
11485
  */
11508
11486
  export function scan(
@@ -12090,7 +12068,7 @@ declare namespace chrome {
12090
12068
  /**
12091
12069
  * Download a URL. If the URL uses the HTTP\[S\] protocol, then the request will include all cookies currently set for its hostname. If both `filename` and `saveAs` are specified, then the Save As dialog will be displayed, pre-populated with the specified `filename`. If the download started successfully, `callback` will be called with the new {@link DownloadItem}'s `downloadId`. If there was an error starting the download, then `callback` will be called with `downloadId=undefined` and {@link runtime.lastError} will contain a descriptive string. The error strings are not guaranteed to remain backwards compatible between releases. Extensions must not parse it.
12092
12070
  *
12093
- * @chrome-returns-extra since Pending
12071
+ * @chrome-returns-extra since Chrome 96
12094
12072
  * @param options What to download and how.
12095
12073
  */
12096
12074
  export function download(
@@ -12116,7 +12094,7 @@ declare namespace chrome {
12116
12094
  /**
12117
12095
  * Find {@link DownloadItem}. Set `query` to the empty object to get all {@link DownloadItem}. To get a specific {@link DownloadItem}, set only the `id` field. To page through a large number of items, set `orderBy: ['-startTime']`, set `limit` to the number of items per page, and set `startedAfter` to the `startTime` of the last item from the last page.
12118
12096
  *
12119
- * @chrome-returns-extra since Pending
12097
+ * @chrome-returns-extra since Chrome 96
12120
12098
  */
12121
12099
  export function search(
12122
12100
 
@@ -12138,7 +12116,7 @@ declare namespace chrome {
12138
12116
  /**
12139
12117
  * Pause the download. If the request was successful the download is in a paused state. Otherwise {@link runtime.lastError} contains an error message. The request will fail if the download is not active.
12140
12118
  *
12141
- * @chrome-returns-extra since Pending
12119
+ * @chrome-returns-extra since Chrome 96
12142
12120
  * @param downloadId The id of the download to pause.
12143
12121
  */
12144
12122
  export function pause(
@@ -12162,7 +12140,7 @@ declare namespace chrome {
12162
12140
  /**
12163
12141
  * Resume a paused download. If the request was successful the download is in progress and unpaused. Otherwise {@link runtime.lastError} contains an error message. The request will fail if the download is not active.
12164
12142
  *
12165
- * @chrome-returns-extra since Pending
12143
+ * @chrome-returns-extra since Chrome 96
12166
12144
  * @param downloadId The id of the download to resume.
12167
12145
  */
12168
12146
  export function resume(
@@ -12186,7 +12164,7 @@ declare namespace chrome {
12186
12164
  /**
12187
12165
  * Cancel a download. When `callback` is run, the download is cancelled, completed, interrupted or doesn't exist anymore.
12188
12166
  *
12189
- * @chrome-returns-extra since Pending
12167
+ * @chrome-returns-extra since Chrome 96
12190
12168
  * @param downloadId The id of the download to cancel.
12191
12169
  */
12192
12170
  export function cancel(
@@ -12210,7 +12188,7 @@ declare namespace chrome {
12210
12188
  /**
12211
12189
  * Retrieve an icon for the specified download. For new downloads, file icons are available after the {@link onCreated} event has been received. The image returned by this function while a download is in progress may be different from the image returned after the download is complete. Icon retrieval is done by querying the underlying operating system or toolkit depending on the platform. The icon that is returned will therefore depend on a number of factors including state of the download, platform, registered file types and visual theme. If a file icon cannot be determined, {@link runtime.lastError} will contain an error message.
12212
12190
  *
12213
- * @chrome-returns-extra since Pending
12191
+ * @chrome-returns-extra since Chrome 96
12214
12192
  * @param downloadId The identifier for the download.
12215
12193
  */
12216
12194
  export function getFileIcon(
@@ -12265,7 +12243,7 @@ declare namespace chrome {
12265
12243
  /**
12266
12244
  * Erase matching {@link DownloadItem} from history without deleting the downloaded file. An {@link onErased} event will fire for each {@link DownloadItem} that matches `query`, then `callback` will be called.
12267
12245
  *
12268
- * @chrome-returns-extra since Pending
12246
+ * @chrome-returns-extra since Chrome 96
12269
12247
  */
12270
12248
  export function erase(
12271
12249
 
@@ -12287,7 +12265,7 @@ declare namespace chrome {
12287
12265
  /**
12288
12266
  * Remove the downloaded file if it exists and the {@link DownloadItem} is complete; otherwise return an error through {@link runtime.lastError}.
12289
12267
  *
12290
- * @chrome-returns-extra since Pending
12268
+ * @chrome-returns-extra since Chrome 96
12291
12269
  */
12292
12270
  export function removeFile(
12293
12271
 
@@ -12307,7 +12285,7 @@ declare namespace chrome {
12307
12285
  /**
12308
12286
  * Prompt the user to accept a dangerous download. Can only be called from a visible context (tab, window, or page/browser action popup). Does not automatically accept dangerous downloads. If the download is accepted, then an {@link onChanged} event will fire, otherwise nothing will happen. When all the data is fetched into a temporary file and either the download is not dangerous or the danger has been accepted, then the temporary file is renamed to the target filename, the `state` changes to 'complete', and {@link onChanged} fires.
12309
12287
  *
12310
- * @chrome-returns-extra since Pending
12288
+ * @chrome-returns-extra since Chrome 96
12311
12289
  * @param downloadId The identifier for the {@link DownloadItem}.
12312
12290
  */
12313
12291
  export function acceptDanger(
@@ -12339,7 +12317,6 @@ declare namespace chrome {
12339
12317
  /**
12340
12318
  * Change the download UI of every window associated with the current browser profile. As long as at least one extension has set {@link UiOptions.enabled} to false, the download UI will be hidden. Setting {@link UiOptions.enabled} to true while at least one other extension has disabled it will return an error through {@link runtime.lastError}. Requires the `"downloads.ui"` permission in addition to the `"downloads"` permission.
12341
12319
  *
12342
- * @chrome-returns-extra since Pending
12343
12320
  * @param options Encapsulate a change to the download UI.
12344
12321
  * @since Chrome 105
12345
12322
  */
@@ -12376,7 +12353,7 @@ declare namespace chrome {
12376
12353
  /**
12377
12354
  * Fetches the value of [the device identifier of the directory API](https://developers.google.com/admin-sdk/directory/v1/guides/manage-chrome-devices), that is generated by the server and identifies the cloud record of the device for querying in the cloud directory API. If the current user is not affiliated, returns an empty string.
12378
12355
  *
12379
- * @chrome-returns-extra since Pending
12356
+ * @chrome-returns-extra since Chrome 96
12380
12357
  */
12381
12358
  export function getDirectoryDeviceId(): Promise<string>;
12382
12359
 
@@ -12395,7 +12372,7 @@ declare namespace chrome {
12395
12372
  /**
12396
12373
  * Fetches the device's serial number. Please note the purpose of this API is to administrate the device (e.g. generating Certificate Sign Requests for device-wide certificates). This API may not be used for tracking devices without the consent of the device's administrator. If the current user is not affiliated, returns an empty string.
12397
12374
  *
12398
- * @chrome-returns-extra since Pending
12375
+ * @chrome-returns-extra since Chrome 96
12399
12376
  * @since Chrome 66
12400
12377
  */
12401
12378
  export function getDeviceSerialNumber(): Promise<string>;
@@ -12416,7 +12393,7 @@ declare namespace chrome {
12416
12393
  /**
12417
12394
  * Fetches the administrator-annotated Asset Id. If the current user is not affiliated or no Asset Id has been set by the administrator, returns an empty string.
12418
12395
  *
12419
- * @chrome-returns-extra since Pending
12396
+ * @chrome-returns-extra since Chrome 96
12420
12397
  * @since Chrome 66
12421
12398
  */
12422
12399
  export function getDeviceAssetId(): Promise<string>;
@@ -12437,7 +12414,7 @@ declare namespace chrome {
12437
12414
  /**
12438
12415
  * Fetches the administrator-annotated Location. If the current user is not affiliated or no Annotated Location has been set by the administrator, returns an empty string.
12439
12416
  *
12440
- * @chrome-returns-extra since Pending
12417
+ * @chrome-returns-extra since Chrome 96
12441
12418
  * @since Chrome 66
12442
12419
  */
12443
12420
  export function getDeviceAnnotatedLocation(): Promise<string>;
@@ -12458,7 +12435,7 @@ declare namespace chrome {
12458
12435
  /**
12459
12436
  * Fetches the device's hostname as set by DeviceHostnameTemplate policy. If the current user is not affiliated or no hostname has been set by the enterprise policy, returns an empty string.
12460
12437
  *
12461
- * @chrome-returns-extra since Pending
12438
+ * @chrome-returns-extra since Chrome 96
12462
12439
  * @since Chrome 82
12463
12440
  */
12464
12441
  export function getDeviceHostname(): Promise<string>;
@@ -12495,7 +12472,7 @@ declare namespace chrome {
12495
12472
  /**
12496
12473
  * Obtains the manufacturer and model for the hardware platform and, if the extension is authorized, returns it via `callback`.
12497
12474
  *
12498
- * @chrome-returns-extra since Pending
12475
+ * @chrome-returns-extra since Chrome 96
12499
12476
  */
12500
12477
  export function getHardwarePlatformInfo(): Promise<HardwarePlatformInfo>;
12501
12478
 
@@ -12543,7 +12520,7 @@ declare namespace chrome {
12543
12520
  /**
12544
12521
  * Retrieves the network details of the device's default network. If the user is not affiliated or the device is not connected to a network, {@link runtime.lastError} will be set with a failure reason.
12545
12522
  *
12546
- * @chrome-returns-extra since Pending
12523
+ * @chrome-returns-extra since Chrome 96
12547
12524
  */
12548
12525
  export function getNetworkDetails(): Promise<NetworkDetails>;
12549
12526
 
@@ -13109,7 +13086,7 @@ declare namespace chrome {
13109
13086
  /**
13110
13087
  * Sends a single request to other listeners within the extension. Similar to {@link runtime.connect}, but only sends a single request with an optional response. The {@link extension.onRequest} event is fired in each page of the extension.
13111
13088
  *
13112
- * @chrome-returns-extra since Pending
13089
+ * @chrome-returns-extra since Chrome 99
13113
13090
  * @param extensionId The extension ID of the extension you want to connect to. If omitted, default is your own extension.
13114
13091
  * @deprecated Please use {@link runtime.sendMessage}.
13115
13092
  * @chrome-max-manifest MV2
@@ -13124,7 +13101,7 @@ declare namespace chrome {
13124
13101
  /**
13125
13102
  * Sends a single request to other listeners within the extension. Similar to {@link runtime.connect}, but only sends a single request with an optional response. The {@link extension.onRequest} event is fired in each page of the extension.
13126
13103
  *
13127
- * @chrome-returns-extra since Pending
13104
+ * @chrome-returns-extra since Chrome 99
13128
13105
  * @deprecated Please use {@link runtime.sendMessage}.
13129
13106
  * @chrome-max-manifest MV2
13130
13107
  */
@@ -13240,7 +13217,7 @@ declare namespace chrome {
13240
13217
  /**
13241
13218
  * Retrieves the state of the extension's access to Incognito-mode. This corresponds to the user-controlled per-extension 'Allowed in Incognito' setting accessible via the chrome://extensions page.
13242
13219
  *
13243
- * @chrome-returns-extra since Pending
13220
+ * @chrome-returns-extra since Chrome 99
13244
13221
  */
13245
13222
  export function isAllowedIncognitoAccess(): Promise<boolean>;
13246
13223
 
@@ -13260,7 +13237,7 @@ declare namespace chrome {
13260
13237
  /**
13261
13238
  * Retrieves the state of the extension's access to the 'file://' scheme. This corresponds to the user-controlled per-extension 'Allow access to File URLs' setting accessible via the chrome://extensions page.
13262
13239
  *
13263
- * @chrome-returns-extra since Pending
13240
+ * @chrome-returns-extra since Chrome 99
13264
13241
  */
13265
13242
  export function isAllowedFileSchemeAccess(): Promise<boolean>;
13266
13243
 
@@ -13697,7 +13674,7 @@ declare namespace chrome {
13697
13674
  /**
13698
13675
  * Prompts user to select file path under which file should be saved. When the file is selected, file access permission required to use the file (read, write and create) are granted to the caller. The file will not actually get created during the function call, so function caller must ensure its existence before using it. The function has to be invoked with a user gesture.
13699
13676
  *
13700
- * @chrome-returns-extra since Pending
13677
+ * @chrome-returns-extra since Chrome 96
13701
13678
  * @param selectionParams Parameters that will be used while selecting the file.
13702
13679
  */
13703
13680
  export function selectFile(
@@ -15038,7 +15015,7 @@ declare namespace chrome {
15038
15015
  *
15039
15016
  * In case of an error, {@link runtime.lastError} will be set with a corresponding error code.
15040
15017
  *
15041
- * @chrome-returns-extra since Pending
15018
+ * @chrome-returns-extra since Chrome 96
15042
15019
  */
15043
15020
  export function mount(
15044
15021
 
@@ -15066,7 +15043,7 @@ declare namespace chrome {
15066
15043
  *
15067
15044
  * In case of an error, {@link runtime.lastError} will be set with a corresponding error code.
15068
15045
  *
15069
- * @chrome-returns-extra since Pending
15046
+ * @chrome-returns-extra since Chrome 96
15070
15047
  */
15071
15048
  export function unmount(
15072
15049
 
@@ -15090,7 +15067,7 @@ declare namespace chrome {
15090
15067
  /**
15091
15068
  * Returns all file systems mounted by the extension.
15092
15069
  *
15093
- * @chrome-returns-extra since Pending
15070
+ * @chrome-returns-extra since Chrome 96
15094
15071
  */
15095
15072
  export function getAll(): Promise<FileSystemInfo[]>;
15096
15073
 
@@ -15109,7 +15086,7 @@ declare namespace chrome {
15109
15086
  /**
15110
15087
  * Returns information about a file system with the passed `fileSystemId`.
15111
15088
  *
15112
- * @chrome-returns-extra since Pending
15089
+ * @chrome-returns-extra since Chrome 96
15113
15090
  */
15114
15091
  export function get(
15115
15092
 
@@ -15143,7 +15120,7 @@ declare namespace chrome {
15143
15120
  *
15144
15121
  * In case of an error, {@link runtime.lastError} will be set will a corresponding error code.
15145
15122
  *
15146
- * @chrome-returns-extra since Pending
15123
+ * @chrome-returns-extra since Chrome 96
15147
15124
  * @since Chrome 45
15148
15125
  */
15149
15126
  export function notify(
@@ -15302,7 +15279,7 @@ declare namespace chrome {
15302
15279
  /**
15303
15280
  * Clears the font set by this extension, if any.
15304
15281
  *
15305
- * @chrome-returns-extra since Pending
15282
+ * @chrome-returns-extra since Chrome 96
15306
15283
  */
15307
15284
  export function clearFont(
15308
15285
 
@@ -15344,7 +15321,7 @@ declare namespace chrome {
15344
15321
  /**
15345
15322
  * Gets the font for a given script and generic font family.
15346
15323
  *
15347
- * @chrome-returns-extra since Pending
15324
+ * @chrome-returns-extra since Chrome 96
15348
15325
  */
15349
15326
  export function getFont(
15350
15327
 
@@ -15410,7 +15387,7 @@ declare namespace chrome {
15410
15387
  /**
15411
15388
  * Sets the font for a given script and generic font family.
15412
15389
  *
15413
- * @chrome-returns-extra since Pending
15390
+ * @chrome-returns-extra since Chrome 96
15414
15391
  */
15415
15392
  export function setFont(
15416
15393
 
@@ -15462,7 +15439,7 @@ declare namespace chrome {
15462
15439
  /**
15463
15440
  * Gets a list of fonts on the system.
15464
15441
  *
15465
- * @chrome-returns-extra since Pending
15442
+ * @chrome-returns-extra since Chrome 96
15466
15443
  */
15467
15444
  export function getFontList(): Promise<FontName[]>;
15468
15445
 
@@ -15479,7 +15456,7 @@ declare namespace chrome {
15479
15456
  /**
15480
15457
  * Clears the default font size set by this extension, if any.
15481
15458
  *
15482
- * @chrome-returns-extra since Pending
15459
+ * @chrome-returns-extra since Chrome 96
15483
15460
  * @param details This parameter is currently unused.
15484
15461
  */
15485
15462
  export function clearDefaultFontSize(
@@ -15502,7 +15479,7 @@ declare namespace chrome {
15502
15479
  /**
15503
15480
  * Gets the default font size.
15504
15481
  *
15505
- * @chrome-returns-extra since Pending
15482
+ * @chrome-returns-extra since Chrome 96
15506
15483
  * @param details This parameter is currently unused.
15507
15484
  */
15508
15485
  export function getDefaultFontSize(
@@ -15549,7 +15526,7 @@ declare namespace chrome {
15549
15526
  /**
15550
15527
  * Sets the default font size.
15551
15528
  *
15552
- * @chrome-returns-extra since Pending
15529
+ * @chrome-returns-extra since Chrome 96
15553
15530
  */
15554
15531
  export function setDefaultFontSize(
15555
15532
 
@@ -15581,7 +15558,7 @@ declare namespace chrome {
15581
15558
  /**
15582
15559
  * Clears the default fixed font size set by this extension, if any.
15583
15560
  *
15584
- * @chrome-returns-extra since Pending
15561
+ * @chrome-returns-extra since Chrome 96
15585
15562
  * @param details This parameter is currently unused.
15586
15563
  */
15587
15564
  export function clearDefaultFixedFontSize(
@@ -15604,7 +15581,7 @@ declare namespace chrome {
15604
15581
  /**
15605
15582
  * Gets the default size for fixed width fonts.
15606
15583
  *
15607
- * @chrome-returns-extra since Pending
15584
+ * @chrome-returns-extra since Chrome 96
15608
15585
  * @param details This parameter is currently unused.
15609
15586
  */
15610
15587
  export function getDefaultFixedFontSize(
@@ -15651,7 +15628,7 @@ declare namespace chrome {
15651
15628
  /**
15652
15629
  * Sets the default size for fixed width fonts.
15653
15630
  *
15654
- * @chrome-returns-extra since Pending
15631
+ * @chrome-returns-extra since Chrome 96
15655
15632
  */
15656
15633
  export function setDefaultFixedFontSize(
15657
15634
 
@@ -15683,7 +15660,7 @@ declare namespace chrome {
15683
15660
  /**
15684
15661
  * Clears the minimum font size set by this extension, if any.
15685
15662
  *
15686
- * @chrome-returns-extra since Pending
15663
+ * @chrome-returns-extra since Chrome 96
15687
15664
  * @param details This parameter is currently unused.
15688
15665
  */
15689
15666
  export function clearMinimumFontSize(
@@ -15706,7 +15683,7 @@ declare namespace chrome {
15706
15683
  /**
15707
15684
  * Gets the minimum font size.
15708
15685
  *
15709
- * @chrome-returns-extra since Pending
15686
+ * @chrome-returns-extra since Chrome 96
15710
15687
  * @param details This parameter is currently unused.
15711
15688
  */
15712
15689
  export function getMinimumFontSize(
@@ -15753,7 +15730,7 @@ declare namespace chrome {
15753
15730
  /**
15754
15731
  * Sets the minimum font size.
15755
15732
  *
15756
- * @chrome-returns-extra since Pending
15733
+ * @chrome-returns-extra since Chrome 96
15757
15734
  */
15758
15735
  export function setMinimumFontSize(
15759
15736
 
@@ -16297,7 +16274,7 @@ declare namespace chrome {
16297
16274
  /**
16298
16275
  * Searches the history for the last visit time of each page matching the query.
16299
16276
  *
16300
- * @chrome-returns-extra since Pending
16277
+ * @chrome-returns-extra since Chrome 96
16301
16278
  */
16302
16279
  export function search(
16303
16280
 
@@ -16361,7 +16338,7 @@ declare namespace chrome {
16361
16338
  /**
16362
16339
  * Retrieves information about visits to a URL.
16363
16340
  *
16364
- * @chrome-returns-extra since Pending
16341
+ * @chrome-returns-extra since Chrome 96
16365
16342
  */
16366
16343
  export function getVisits(
16367
16344
 
@@ -16383,7 +16360,7 @@ declare namespace chrome {
16383
16360
  /**
16384
16361
  * Adds a URL to the history at the current time with a [transition type](https://developer.chrome.com/docs/extensions/reference/history/#transition_types) of "link".
16385
16362
  *
16386
- * @chrome-returns-extra since Pending
16363
+ * @chrome-returns-extra since Chrome 96
16387
16364
  */
16388
16365
  export function addUrl(
16389
16366
 
@@ -16403,7 +16380,7 @@ declare namespace chrome {
16403
16380
  /**
16404
16381
  * Removes all occurrences of the given URL from the history.
16405
16382
  *
16406
- * @chrome-returns-extra since Pending
16383
+ * @chrome-returns-extra since Chrome 96
16407
16384
  */
16408
16385
  export function deleteUrl(
16409
16386
 
@@ -16423,7 +16400,7 @@ declare namespace chrome {
16423
16400
  /**
16424
16401
  * Removes all items within the specified date range from the history. Pages will not be removed from the history unless all visits fall within the range.
16425
16402
  *
16426
- * @chrome-returns-extra since Pending
16403
+ * @chrome-returns-extra since Chrome 96
16427
16404
  */
16428
16405
  export function deleteRange(
16429
16406
 
@@ -16465,7 +16442,7 @@ declare namespace chrome {
16465
16442
  /**
16466
16443
  * Deletes all items from the history.
16467
16444
  *
16468
- * @chrome-returns-extra since Pending
16445
+ * @chrome-returns-extra since Chrome 96
16469
16446
  */
16470
16447
  export function deleteAll(): Promise<void>;
16471
16448
 
@@ -16493,7 +16470,7 @@ declare namespace chrome {
16493
16470
  /**
16494
16471
  * Gets the accept-languages of the browser. This is different from the locale used by the browser; to get the locale, use {@link i18n.getUILanguage}.
16495
16472
  *
16496
- * @chrome-returns-extra since Pending
16473
+ * @chrome-returns-extra since Chrome 99
16497
16474
  */
16498
16475
  export function getAcceptLanguages(): Promise<LanguageCode[]>;
16499
16476
 
@@ -16545,7 +16522,7 @@ declare namespace chrome {
16545
16522
  /**
16546
16523
  * Detects the language of the provided text using CLD.
16547
16524
  *
16548
- * @chrome-returns-extra since Pending
16525
+ * @chrome-returns-extra since Chrome 99
16549
16526
  * @param text User input string to be translated.
16550
16527
  * @since Chrome 47
16551
16528
  */
@@ -16738,7 +16715,7 @@ declare namespace chrome {
16738
16715
  *
16739
16716
  * `getAccounts` is only supported on dev channel.
16740
16717
  *
16741
- * @chrome-returns-extra since Pending
16718
+ * @chrome-returns-extra since Chrome 106
16742
16719
  */
16743
16720
  export function getAccounts(): Promise<AccountInfo[]>;
16744
16721
 
@@ -16763,7 +16740,7 @@ declare namespace chrome {
16763
16740
  *
16764
16741
  * Note: When called with a callback, instead of returning an object this function will return the two properties as separate arguments passed to the callback.
16765
16742
  *
16766
- * @chrome-returns-extra since Pending
16743
+ * @chrome-returns-extra since Chrome 105
16767
16744
  * @param details Token options.
16768
16745
  */
16769
16746
  export function getAuthToken(
@@ -16802,7 +16779,7 @@ declare namespace chrome {
16802
16779
  *
16803
16780
  * This API is different from identity.getAccounts in two ways. The information returned is available offline, and it only applies to the primary account for the profile.
16804
16781
  *
16805
- * @chrome-returns-extra since Pending
16782
+ * @chrome-returns-extra since Chrome 106
16806
16783
  * @param details Profile options.
16807
16784
  */
16808
16785
  export function getProfileUserInfo(
@@ -16840,7 +16817,7 @@ declare namespace chrome {
16840
16817
  *
16841
16818
  * If an access token is discovered to be invalid, it should be passed to removeCachedAuthToken to remove it from the cache. The app may then retrieve a fresh token with `getAuthToken`.
16842
16819
  *
16843
- * @chrome-returns-extra since Pending
16820
+ * @chrome-returns-extra since Chrome 106
16844
16821
  * @param details Token information.
16845
16822
  */
16846
16823
  export function removeCachedAuthToken(
@@ -16870,7 +16847,7 @@ declare namespace chrome {
16870
16847
  * * Removes user's account preferences
16871
16848
  * * De-authorizes the user from all auth flows
16872
16849
  *
16873
- * @chrome-returns-extra since Pending
16850
+ * @chrome-returns-extra since Chrome 106
16874
16851
  * @since Chrome 87
16875
16852
  */
16876
16853
  export function clearAllCachedAuthTokens(): Promise<void>;
@@ -16897,7 +16874,7 @@ declare namespace chrome {
16897
16874
  *
16898
16875
  * For a good user experience it is important interactive auth flows are initiated by UI in your app explaining what the authorization is for. Failing to do this will cause your users to get authorization requests with no context. In particular, do not launch an interactive auth flow when your app is first launched.
16899
16876
  *
16900
- * @chrome-returns-extra since Pending
16877
+ * @chrome-returns-extra since Chrome 106
16901
16878
  * @param details WebAuth flow options.
16902
16879
  */
16903
16880
  export function launchWebAuthFlow(
@@ -18220,7 +18197,7 @@ declare namespace chrome {
18220
18197
  /**
18221
18198
  * Retrieves an identifier for the app instance. The instance ID will be returned by the `callback`. The same ID will be returned as long as the application identity has not been revoked or expired.
18222
18199
  *
18223
- * @chrome-returns-extra since Pending
18200
+ * @chrome-returns-extra since Chrome 96
18224
18201
  */
18225
18202
  export function getID(): Promise<string>;
18226
18203
 
@@ -18242,7 +18219,7 @@ declare namespace chrome {
18242
18219
  /**
18243
18220
  * Retrieves the time when the InstanceID has been generated. The creation time will be returned by the `callback`.
18244
18221
  *
18245
- * @chrome-returns-extra since Pending
18222
+ * @chrome-returns-extra since Chrome 96
18246
18223
  */
18247
18224
  export function getCreationTime(): Promise<number>;
18248
18225
 
@@ -18264,7 +18241,7 @@ declare namespace chrome {
18264
18241
  /**
18265
18242
  * Return a token that allows the authorized entity to access the service defined by scope.
18266
18243
  *
18267
- * @chrome-returns-extra since Pending
18244
+ * @chrome-returns-extra since Chrome 96
18268
18245
  * @param getTokenParams Parameters for getToken.
18269
18246
  */
18270
18247
  export function getToken(
@@ -18341,7 +18318,7 @@ declare namespace chrome {
18341
18318
  /**
18342
18319
  * Revokes a granted token.
18343
18320
  *
18344
- * @chrome-returns-extra since Pending
18321
+ * @chrome-returns-extra since Chrome 96
18345
18322
  * @param deleteTokenParams Parameters for deleteToken.
18346
18323
  */
18347
18324
  export function deleteToken(
@@ -18395,7 +18372,7 @@ declare namespace chrome {
18395
18372
  /**
18396
18373
  * Resets the app instance identifier and revokes all tokens associated with it.
18397
18374
  *
18398
- * @chrome-returns-extra since Pending
18375
+ * @chrome-returns-extra since Chrome 96
18399
18376
  */
18400
18377
  export function deleteID(): Promise<void>;
18401
18378
 
@@ -18446,7 +18423,7 @@ declare namespace chrome {
18446
18423
  /**
18447
18424
  * Gets the type of the profile the extension is in.
18448
18425
  *
18449
- * @chrome-returns-extra since Pending
18426
+ * @chrome-returns-extra since Chrome 96
18450
18427
  */
18451
18428
  export function getProfileType(): Promise<ProfileType>;
18452
18429
 
@@ -18463,7 +18440,7 @@ declare namespace chrome {
18463
18440
  /**
18464
18441
  * Gets the current session state.
18465
18442
  *
18466
- * @chrome-returns-extra since Pending
18443
+ * @chrome-returns-extra since Chrome 96
18467
18444
  */
18468
18445
  export function getSessionState(): Promise<SessionState>;
18469
18446
 
@@ -18703,7 +18680,7 @@ declare namespace chrome {
18703
18680
  /**
18704
18681
  * Returns a list of information about installed extensions and apps.
18705
18682
  *
18706
- * @chrome-returns-extra since Pending
18683
+ * @chrome-returns-extra since Chrome 88
18707
18684
  */
18708
18685
  export function getAll(): Promise<ExtensionInfo[]>;
18709
18686
 
@@ -18720,7 +18697,7 @@ declare namespace chrome {
18720
18697
  /**
18721
18698
  * Returns information about the installed extension, app, or theme that has the given ID.
18722
18699
  *
18723
- * @chrome-returns-extra since Pending
18700
+ * @chrome-returns-extra since Chrome 88
18724
18701
  * @param id The ID from an item of {@link management.ExtensionInfo}.
18725
18702
  */
18726
18703
  export function get(
@@ -18745,7 +18722,7 @@ declare namespace chrome {
18745
18722
  /**
18746
18723
  * Returns information about the calling extension, app, or theme. Note: This function can be used without requesting the 'management' permission in the manifest.
18747
18724
  *
18748
- * @chrome-returns-extra since Pending
18725
+ * @chrome-returns-extra since Chrome 88
18749
18726
  */
18750
18727
  export function getSelf(): Promise<ExtensionInfo>;
18751
18728
 
@@ -18762,7 +18739,7 @@ declare namespace chrome {
18762
18739
  /**
18763
18740
  * Returns a list of [permission warnings](https://developer.chrome.com/docs/extensions/permission_warnings) for the given extension id.
18764
18741
  *
18765
- * @chrome-returns-extra since Pending
18742
+ * @chrome-returns-extra since Chrome 88
18766
18743
  * @param id The ID of an already installed extension.
18767
18744
  */
18768
18745
  export function getPermissionWarningsById(
@@ -18787,7 +18764,7 @@ declare namespace chrome {
18787
18764
  /**
18788
18765
  * Returns a list of [permission warnings](https://developer.chrome.com/docs/extensions/permission_warnings) for the given extension manifest string. Note: This function can be used without requesting the 'management' permission in the manifest.
18789
18766
  *
18790
- * @chrome-returns-extra since Pending
18767
+ * @chrome-returns-extra since Chrome 88
18791
18768
  * @param manifestStr Extension manifest JSON string.
18792
18769
  */
18793
18770
  export function getPermissionWarningsByManifest(
@@ -18812,7 +18789,7 @@ declare namespace chrome {
18812
18789
  /**
18813
18790
  * Enables or disables an app or extension. In most cases this function must be called in the context of a user gesture (e.g. an onclick handler for a button), and may present the user with a native confirmation UI as a way of preventing abuse.
18814
18791
  *
18815
- * @chrome-returns-extra since Pending
18792
+ * @chrome-returns-extra since Chrome 88
18816
18793
  * @param id This should be the id from an item of {@link management.ExtensionInfo}.
18817
18794
  * @param enabled Whether this item should be enabled or disabled.
18818
18795
  */
@@ -18841,7 +18818,7 @@ declare namespace chrome {
18841
18818
  /**
18842
18819
  * Uninstalls a currently installed app or extension. Note: This function does not work in managed environments when the user is not allowed to uninstall the specified extension/app.
18843
18820
  *
18844
- * @chrome-returns-extra since Pending
18821
+ * @chrome-returns-extra since Chrome 88
18845
18822
  * @param id This should be the id from an item of {@link management.ExtensionInfo}.
18846
18823
  */
18847
18824
  export function uninstall(
@@ -18868,7 +18845,7 @@ declare namespace chrome {
18868
18845
  /**
18869
18846
  * Uninstalls the calling extension. Note: This function can be used without requesting the 'management' permission in the manifest. This function does not work in managed environments when the user is not allowed to uninstall the specified extension/app.
18870
18847
  *
18871
- * @chrome-returns-extra since Pending
18848
+ * @chrome-returns-extra since Chrome 88
18872
18849
  */
18873
18850
  export function uninstallSelf(
18874
18851
 
@@ -18888,7 +18865,7 @@ declare namespace chrome {
18888
18865
  /**
18889
18866
  * Launches an application.
18890
18867
  *
18891
- * @chrome-returns-extra since Pending
18868
+ * @chrome-returns-extra since Chrome 88
18892
18869
  * @param id The extension id of the application.
18893
18870
  */
18894
18871
  export function launchApp(
@@ -18911,7 +18888,7 @@ declare namespace chrome {
18911
18888
  /**
18912
18889
  * Display options to create shortcuts for an app. On Mac, only packaged app shortcuts can be created.
18913
18890
  *
18914
- * @chrome-returns-extra since Pending
18891
+ * @chrome-returns-extra since Chrome 88
18915
18892
  * @param id This should be the id from an app item of {@link management.ExtensionInfo}.
18916
18893
  */
18917
18894
  export function createAppShortcut(
@@ -18934,7 +18911,7 @@ declare namespace chrome {
18934
18911
  /**
18935
18912
  * Set the launch type of an app.
18936
18913
  *
18937
- * @chrome-returns-extra since Pending
18914
+ * @chrome-returns-extra since Chrome 88
18938
18915
  * @param id This should be the id from an app item of {@link management.ExtensionInfo}.
18939
18916
  * @param launchType The target launch type. Always check and make sure this launch type is in {@link ExtensionInfo.availableLaunchTypes}, because the available launch types vary on different platforms and configurations.
18940
18917
  */
@@ -18963,7 +18940,7 @@ declare namespace chrome {
18963
18940
  /**
18964
18941
  * Generate an app for a URL. Returns the generated bookmark app.
18965
18942
  *
18966
- * @chrome-returns-extra since Pending
18943
+ * @chrome-returns-extra since Chrome 88
18967
18944
  * @param url The URL of a web page. The scheme of the URL can only be "http" or "https".
18968
18945
  * @param title The title of the generated app.
18969
18946
  */
@@ -19042,7 +19019,7 @@ declare namespace chrome {
19042
19019
  /**
19043
19020
  * Launches the replacement\_web\_app specified in the manifest. Prompts the user to install if not already installed.
19044
19021
  *
19045
- * @chrome-returns-extra since Pending
19022
+ * @chrome-returns-extra since Chrome 88
19046
19023
  * @since Chrome 77
19047
19024
  * @chrome-manifest replacement_web_app
19048
19025
  */
@@ -19239,7 +19216,7 @@ declare namespace chrome {
19239
19216
  /**
19240
19217
  * Immediately issues a multicast DNS query for all service types. `callback` is invoked immediately. At a later time, queries will be sent, and any service events will be fired.
19241
19218
  *
19242
- * @chrome-returns-extra since Pending
19219
+ * @chrome-returns-extra since Chrome 96
19243
19220
  * @since Chrome 45
19244
19221
  */
19245
19222
  export function forceDiscovery(): Promise<void>;
@@ -21741,7 +21718,6 @@ declare namespace chrome {
21741
21718
  /**
21742
21719
  * Creates a new offscreen document for the extension.
21743
21720
  *
21744
- * @chrome-returns-extra since Pending
21745
21721
  * @param parameters The parameters describing the offscreen document to create.
21746
21722
  */
21747
21723
  export function createDocument(
@@ -21764,8 +21740,6 @@ declare namespace chrome {
21764
21740
 
21765
21741
  /**
21766
21742
  * Closes the currently-open offscreen document for the extension.
21767
- *
21768
- * @chrome-returns-extra since Pending
21769
21743
  */
21770
21744
  export function closeDocument(): Promise<void>;
21771
21745
 
@@ -21878,7 +21852,7 @@ declare namespace chrome {
21878
21852
  /**
21879
21853
  * Sets the description and styling for the default suggestion. The default suggestion is the text that is displayed in the first suggestion row underneath the URL bar.
21880
21854
  *
21881
- * @chrome-returns-extra since Pending
21855
+ * @chrome-returns-extra since Chrome 100
21882
21856
  * @param suggestion A partial SuggestResult object, without the 'content' parameter.
21883
21857
  */
21884
21858
  export function setDefaultSuggestion(
@@ -21936,7 +21910,7 @@ declare namespace chrome {
21936
21910
  /**
21937
21911
  * Shows the page action. The page action is shown whenever the tab is selected.
21938
21912
  *
21939
- * @chrome-returns-extra since Pending
21913
+ * @chrome-returns-extra since Chrome 101
21940
21914
  * @param tabId The id of the tab for which you want to modify the page action.
21941
21915
  */
21942
21916
  export function show(
@@ -21962,7 +21936,7 @@ declare namespace chrome {
21962
21936
  /**
21963
21937
  * Hides the page action. Hidden page actions still appear in the Chrome toolbar, but are grayed out.
21964
21938
  *
21965
- * @chrome-returns-extra since Pending
21939
+ * @chrome-returns-extra since Chrome 101
21966
21940
  * @param tabId The id of the tab for which you want to modify the page action.
21967
21941
  */
21968
21942
  export function hide(
@@ -21988,7 +21962,7 @@ declare namespace chrome {
21988
21962
  /**
21989
21963
  * Sets the title of the page action. This is displayed in a tooltip over the page action.
21990
21964
  *
21991
- * @chrome-returns-extra since Pending
21965
+ * @chrome-returns-extra since Chrome 101
21992
21966
  */
21993
21967
  export function setTitle(
21994
21968
 
@@ -22033,7 +22007,7 @@ declare namespace chrome {
22033
22007
  /**
22034
22008
  * Gets the title of the page action.
22035
22009
  *
22036
- * @chrome-returns-extra since Pending
22010
+ * @chrome-returns-extra since Chrome 101
22037
22011
  */
22038
22012
  export function getTitle(
22039
22013
 
@@ -22055,7 +22029,7 @@ declare namespace chrome {
22055
22029
  /**
22056
22030
  * Sets the icon for the page action. The icon can be specified either as the path to an image file or as the pixel data from a canvas element, or as dictionary of either one of those. Either the **path** or the **imageData** property must be specified.
22057
22031
  *
22058
- * @chrome-returns-extra since Pending
22032
+ * @chrome-returns-extra since Chrome 101
22059
22033
  */
22060
22034
  export function setIcon(
22061
22035
 
@@ -22117,7 +22091,7 @@ declare namespace chrome {
22117
22091
  /**
22118
22092
  * Sets the HTML document to be opened as a popup when the user clicks on the page action's icon.
22119
22093
  *
22120
- * @chrome-returns-extra since Pending
22094
+ * @chrome-returns-extra since Chrome 101
22121
22095
  */
22122
22096
  export function setPopup(
22123
22097
 
@@ -22162,7 +22136,7 @@ declare namespace chrome {
22162
22136
  /**
22163
22137
  * Gets the html document set as the popup for this page action.
22164
22138
  *
22165
- * @chrome-returns-extra since Pending
22139
+ * @chrome-returns-extra since Chrome 101
22166
22140
  */
22167
22141
  export function getPopup(
22168
22142
 
@@ -22248,7 +22222,7 @@ declare namespace chrome {
22248
22222
  /**
22249
22223
  * Gets the extension's current set of permissions.
22250
22224
  *
22251
- * @chrome-returns-extra since Pending
22225
+ * @chrome-returns-extra since Chrome 96
22252
22226
  */
22253
22227
  export function getAll(): Promise<Permissions>;
22254
22228
 
@@ -22268,7 +22242,7 @@ declare namespace chrome {
22268
22242
  /**
22269
22243
  * Checks if the extension has the specified permissions.
22270
22244
  *
22271
- * @chrome-returns-extra since Pending
22245
+ * @chrome-returns-extra since Chrome 96
22272
22246
  */
22273
22247
  export function contains(
22274
22248
 
@@ -22293,7 +22267,7 @@ declare namespace chrome {
22293
22267
  /**
22294
22268
  * Requests access to the specified permissions, displaying a prompt to the user if necessary. These permissions must either be defined in the `optional_permissions` field of the manifest or be required permissions that were withheld by the user. Paths on origin patterns will be ignored. You can request subsets of optional origin permissions; for example, if you specify `*://*\/*` in the `optional_permissions` section of the manifest, you can request `http://example.com/`. If there are any problems requesting the permissions, {@link runtime.lastError} will be set.
22295
22269
  *
22296
- * @chrome-returns-extra since Pending
22270
+ * @chrome-returns-extra since Chrome 96
22297
22271
  */
22298
22272
  export function request(
22299
22273
 
@@ -22318,7 +22292,7 @@ declare namespace chrome {
22318
22292
  /**
22319
22293
  * Removes access to the specified permissions. If there are any problems removing the permissions, {@link runtime.lastError} will be set.
22320
22294
  *
22321
- * @chrome-returns-extra since Pending
22295
+ * @chrome-returns-extra since Chrome 96
22322
22296
  */
22323
22297
  export function remove(
22324
22298
 
@@ -22791,7 +22765,7 @@ declare namespace chrome {
22791
22765
  /**
22792
22766
  * Submits the job for print. If the extension is not listed in PrintingAPIExtensionsAllowlist policy, the user will be prompted to accept the print job.
22793
22767
  *
22794
- * @chrome-returns-extra since Pending
22768
+ * @chrome-returns-extra since Chrome 100
22795
22769
  */
22796
22770
  export function submitJob(
22797
22771
 
@@ -22813,7 +22787,7 @@ declare namespace chrome {
22813
22787
  /**
22814
22788
  * Cancels previously submitted job.
22815
22789
  *
22816
- * @chrome-returns-extra since Pending
22790
+ * @chrome-returns-extra since Chrome 100
22817
22791
  * @param jobId The id of the print job to cancel. This should be the same id received in a {@link SubmitJobResponse}.
22818
22792
  */
22819
22793
  export function cancelJob(
@@ -22836,7 +22810,7 @@ declare namespace chrome {
22836
22810
  /**
22837
22811
  * Returns the list of available printers on the device. This includes manually added, enterprise and discovered printers.
22838
22812
  *
22839
- * @chrome-returns-extra since Pending
22813
+ * @chrome-returns-extra since Chrome 100
22840
22814
  */
22841
22815
  export function getPrinters(): Promise<Printer[]>;
22842
22816
 
@@ -22853,7 +22827,7 @@ declare namespace chrome {
22853
22827
  /**
22854
22828
  * Returns the status and capabilities of the printer in [CDD format](https://developers.google.com/cloud-print/docs/cdd#cdd). This call will fail with a runtime error if no printers with given id are installed.
22855
22829
  *
22856
- * @chrome-returns-extra since Pending
22830
+ * @chrome-returns-extra since Chrome 100
22857
22831
  */
22858
22832
  export function getPrinterInfo(
22859
22833
 
@@ -23051,7 +23025,7 @@ declare namespace chrome {
23051
23025
  /**
23052
23026
  * Returns the list of the finished print jobs.
23053
23027
  *
23054
- * @chrome-returns-extra since Pending
23028
+ * @chrome-returns-extra since Chrome 96
23055
23029
  */
23056
23030
  export function getPrintJobs(): Promise<PrintJobInfo[]>;
23057
23031
 
@@ -23900,7 +23874,7 @@ declare namespace chrome {
23900
23874
  /**
23901
23875
  * Retrieves the JavaScript 'window' object for the background page running inside the current extension/app. If the background page is an event page, the system will ensure it is loaded before calling the callback. If there is no background page, an error is set.
23902
23876
  *
23903
- * @chrome-returns-extra since Pending
23877
+ * @chrome-returns-extra since Chrome 99
23904
23878
  * @chrome-disallow-service-workers
23905
23879
  */
23906
23880
  export function getBackgroundPage(): Promise<Window | undefined>;
@@ -23927,7 +23901,7 @@ declare namespace chrome {
23927
23901
  *
23928
23902
  * If your Extension does not declare an options page, or Chrome failed to create one for some other reason, the callback will set {@link lastError}.
23929
23903
  *
23930
- * @chrome-returns-extra since Pending
23904
+ * @chrome-returns-extra since Chrome 99
23931
23905
  */
23932
23906
  export function openOptionsPage(): Promise<void>;
23933
23907
 
@@ -23964,7 +23938,7 @@ declare namespace chrome {
23964
23938
  /**
23965
23939
  * Sets the URL to be visited upon uninstallation. This may be used to clean up server-side data, do analytics, and implement surveys. Maximum 255 characters.
23966
23940
  *
23967
- * @chrome-returns-extra since Pending
23941
+ * @chrome-returns-extra since Chrome 99
23968
23942
  * @param url URL to be opened after the extension is uninstalled. This URL must have an http: or https: scheme. Set an empty string to not open a new tab upon uninstallation.
23969
23943
  */
23970
23944
  export function setUninstallURL(
@@ -24002,7 +23976,7 @@ declare namespace chrome {
24002
23976
  *
24003
23977
  * Note: When called with a callback, instead of returning an object this function will return the two properties as separate arguments passed to the callback.
24004
23978
  *
24005
- * @chrome-returns-extra since Pending
23979
+ * @chrome-returns-extra since Chrome 109
24006
23980
  */
24007
23981
  export function requestUpdateCheck(): Promise<{
24008
23982
 
@@ -24058,7 +24032,7 @@ declare namespace chrome {
24058
24032
  /**
24059
24033
  * Restart the ChromeOS device when the app runs in kiosk mode after the given seconds. If called again before the time ends, the reboot will be delayed. If called with a value of -1, the reboot will be cancelled. It's a no-op in non-kiosk mode. It's only allowed to be called repeatedly by the first extension to invoke this API.
24060
24034
  *
24061
- * @chrome-returns-extra since Pending
24035
+ * @chrome-returns-extra since Chrome 99
24062
24036
  * @param seconds Time to wait in seconds before rebooting the device, or -1 to cancel a scheduled reboot.
24063
24037
  * @since Chrome 53
24064
24038
  */
@@ -24120,7 +24094,7 @@ declare namespace chrome {
24120
24094
  /**
24121
24095
  * Sends a single message to event listeners within your extension/app or a different extension/app. Similar to {@link runtime.connect} but only sends a single message, with an optional response. If sending to your extension, the {@link runtime.onMessage} event will be fired in every frame of your extension (except for the sender's frame), or {@link runtime.onMessageExternal}, if a different extension. Note that extensions cannot send messages to content scripts using this method. To send messages to content scripts, use {@link tabs.sendMessage}.
24122
24096
  *
24123
- * @chrome-returns-extra since Pending
24097
+ * @chrome-returns-extra since Chrome 99
24124
24098
  * @param extensionId The ID of the extension/app to send the message to. If omitted, the message will be sent to your own extension/app. Required if sending messages from a web page for [web messaging](https://developer.chrome.com/docs/extensions/manifest/externally_connectable).
24125
24099
  * @param message The message to send. This message should be a JSON-ifiable object.
24126
24100
  */
@@ -24142,7 +24116,7 @@ declare namespace chrome {
24142
24116
  /**
24143
24117
  * Sends a single message to event listeners within your extension/app or a different extension/app. Similar to {@link runtime.connect} but only sends a single message, with an optional response. If sending to your extension, the {@link runtime.onMessage} event will be fired in every frame of your extension (except for the sender's frame), or {@link runtime.onMessageExternal}, if a different extension. Note that extensions cannot send messages to content scripts using this method. To send messages to content scripts, use {@link tabs.sendMessage}.
24144
24118
  *
24145
- * @chrome-returns-extra since Pending
24119
+ * @chrome-returns-extra since Chrome 99
24146
24120
  * @param message The message to send. This message should be a JSON-ifiable object.
24147
24121
  */
24148
24122
  export function sendMessage(
@@ -24216,7 +24190,7 @@ declare namespace chrome {
24216
24190
  /**
24217
24191
  * Send a single message to a native application.
24218
24192
  *
24219
- * @chrome-returns-extra since Pending
24193
+ * @chrome-returns-extra since Chrome 99
24220
24194
  * @param application The name of the native messaging host.
24221
24195
  * @param message The message that will be passed to the native messaging host.
24222
24196
  * @chrome-permission nativeMessaging
@@ -24253,7 +24227,7 @@ declare namespace chrome {
24253
24227
  /**
24254
24228
  * Returns information about the current platform.
24255
24229
  *
24256
- * @chrome-returns-extra since Pending
24230
+ * @chrome-returns-extra since Chrome 99
24257
24231
  */
24258
24232
  export function getPlatformInfo(): Promise<PlatformInfo>;
24259
24233
 
@@ -24483,7 +24457,7 @@ declare namespace chrome {
24483
24457
  /**
24484
24458
  * Injects a script into a target context. The script will be run at `document_idle`. If the script evaluates to a promise, the browser will wait for the promise to settle and return the resulting value.
24485
24459
  *
24486
- * @chrome-returns-extra since Pending
24460
+ * @chrome-returns-extra since Chrome 90
24487
24461
  * @param injection The details of the script which to inject.
24488
24462
  */
24489
24463
  export function executeScript(
@@ -24509,7 +24483,7 @@ declare namespace chrome {
24509
24483
  /**
24510
24484
  * Inserts a CSS stylesheet into a target context. If multiple frames are specified, unsuccessful injections are ignored.
24511
24485
  *
24512
- * @chrome-returns-extra since Pending
24486
+ * @chrome-returns-extra since Chrome 90
24513
24487
  * @param injection The details of the styles to insert.
24514
24488
  */
24515
24489
  export function insertCSS(
@@ -24533,7 +24507,6 @@ declare namespace chrome {
24533
24507
  /**
24534
24508
  * Removes a CSS stylesheet that was previously inserted by this extension from a target context.
24535
24509
  *
24536
- * @chrome-returns-extra since Pending
24537
24510
  * @param injection The details of the styles to remove. Note that the `css`, `files`, and `origin` properties must exactly match the stylesheet inserted through {@link insertCSS}. Attempting to remove a non-existent stylesheet is a no-op.
24538
24511
  * @since Chrome 90
24539
24512
  */
@@ -24559,7 +24532,6 @@ declare namespace chrome {
24559
24532
  /**
24560
24533
  * Registers one or more content scripts for this extension.
24561
24534
  *
24562
- * @chrome-returns-extra since Pending
24563
24535
  * @param scripts Contains a list of scripts to be registered. If there are errors during script parsing/file validation, or if the IDs specified already exist, then no scripts are registered.
24564
24536
  * @since Chrome 96
24565
24537
  */
@@ -24585,7 +24557,6 @@ declare namespace chrome {
24585
24557
  /**
24586
24558
  * Returns all dynamically registered content scripts for this extension that match the given filter.
24587
24559
  *
24588
- * @chrome-returns-extra since Pending
24589
24560
  * @param filter An object to filter the extension's dynamically registered scripts.
24590
24561
  * @since Chrome 96
24591
24562
  */
@@ -24612,7 +24583,6 @@ declare namespace chrome {
24612
24583
  /**
24613
24584
  * Unregisters content scripts for this extension.
24614
24585
  *
24615
- * @chrome-returns-extra since Pending
24616
24586
  * @param filter If specified, only unregisters dynamic content scripts which match the filter. Otherwise, all of the extension's dynamic content scripts are unregistered.
24617
24587
  * @since Chrome 96
24618
24588
  */
@@ -24638,7 +24608,6 @@ declare namespace chrome {
24638
24608
  /**
24639
24609
  * Updates one or more content scripts for this extension.
24640
24610
  *
24641
- * @chrome-returns-extra since Pending
24642
24611
  * @param scripts Contains a list of scripts to be updated. A property is only updated for the existing script if it is specified in this object. If there are errors during script parsing/file validation, or if the IDs specified do not correspond to a fully registered script, then no scripts are updated.
24643
24612
  * @since Chrome 96
24644
24613
  */
@@ -24698,7 +24667,7 @@ declare namespace chrome {
24698
24667
  /**
24699
24668
  * Used to query the default search provider. In case of an error, {@link runtime.lastError} will be set.
24700
24669
  *
24701
- * @chrome-returns-extra since Pending
24670
+ * @chrome-returns-extra since Chrome 96
24702
24671
  */
24703
24672
  export function query(
24704
24673
 
@@ -25253,7 +25222,7 @@ declare namespace chrome {
25253
25222
  /**
25254
25223
  * Gets the list of recently closed tabs and/or windows.
25255
25224
  *
25256
- * @chrome-returns-extra since Pending
25225
+ * @chrome-returns-extra since Chrome 96
25257
25226
  */
25258
25227
  export function getRecentlyClosed(
25259
25228
 
@@ -25278,7 +25247,7 @@ declare namespace chrome {
25278
25247
  /**
25279
25248
  * Retrieves all devices with synced sessions.
25280
25249
  *
25281
- * @chrome-returns-extra since Pending
25250
+ * @chrome-returns-extra since Chrome 96
25282
25251
  */
25283
25252
  export function getDevices(
25284
25253
 
@@ -25303,7 +25272,7 @@ declare namespace chrome {
25303
25272
  /**
25304
25273
  * Reopens a {@link windows.Window} or {@link tabs.Tab}, with an optional callback to run when the entry has been restored.
25305
25274
  *
25306
- * @chrome-returns-extra since Pending
25275
+ * @chrome-returns-extra since Chrome 96
25307
25276
  * @param sessionId The {@link windows.Window.sessionId}, or {@link tabs.Tab.sessionId} to restore. If this parameter is not specified, the most recently closed session is restored.
25308
25277
  */
25309
25278
  export function restore(
@@ -27310,7 +27279,7 @@ declare namespace chrome {
27310
27279
  /**
27311
27280
  * Gets one or more items from storage.
27312
27281
  *
27313
- * @chrome-returns-extra since Pending
27282
+ * @chrome-returns-extra since Chrome 88
27314
27283
  * @param keys A single key to get, list of keys to get, or a dictionary specifying default values (see description of the object). An empty list or object will return an empty result object. Pass in `null` to get the entire contents of storage.
27315
27284
  */
27316
27285
  get(
@@ -27339,7 +27308,7 @@ declare namespace chrome {
27339
27308
  /**
27340
27309
  * Gets the amount of space (in bytes) being used by one or more items.
27341
27310
  *
27342
- * @chrome-returns-extra since Pending
27311
+ * @chrome-returns-extra since Chrome 88
27343
27312
  * @param keys A single key or list of keys to get the total usage for. An empty list will return 0. Pass in `null` to get the total usage of all of storage.
27344
27313
  */
27345
27314
  getBytesInUse(
@@ -27368,7 +27337,7 @@ declare namespace chrome {
27368
27337
  /**
27369
27338
  * Sets multiple items.
27370
27339
  *
27371
- * @chrome-returns-extra since Pending
27340
+ * @chrome-returns-extra since Chrome 88
27372
27341
  * @param items
27373
27342
 
27374
27343
  An object which gives each key/value pair to update storage with. Any other key/value pairs in storage will not be affected.
@@ -27400,7 +27369,7 @@ declare namespace chrome {
27400
27369
  /**
27401
27370
  * Removes one or more items from storage.
27402
27371
  *
27403
- * @chrome-returns-extra since Pending
27372
+ * @chrome-returns-extra since Chrome 88
27404
27373
  * @param keys A single key or a list of keys for items to remove.
27405
27374
  */
27406
27375
  remove(
@@ -27424,7 +27393,7 @@ declare namespace chrome {
27424
27393
  /**
27425
27394
  * Removes all items from storage.
27426
27395
  *
27427
- * @chrome-returns-extra since Pending
27396
+ * @chrome-returns-extra since Chrome 88
27428
27397
  */
27429
27398
  clear(): Promise<void>;
27430
27399
 
@@ -27441,7 +27410,6 @@ declare namespace chrome {
27441
27410
  /**
27442
27411
  * Sets the desired access level for the storage area. The default will be only trusted contexts.
27443
27412
  *
27444
- * @chrome-returns-extra since Pending
27445
27413
  * @since Chrome 102
27446
27414
  */
27447
27415
  setAccessLevel(
@@ -27826,7 +27794,7 @@ declare namespace chrome {
27826
27794
  /**
27827
27795
  * Queries basic CPU information of the system.
27828
27796
  *
27829
- * @chrome-returns-extra since Pending
27797
+ * @chrome-returns-extra since Chrome 91
27830
27798
  */
27831
27799
  export function getInfo(): Promise<CpuInfo>;
27832
27800
 
@@ -28283,7 +28251,7 @@ declare namespace chrome {
28283
28251
  /**
28284
28252
  * Requests the information for all attached display devices.
28285
28253
  *
28286
- * @chrome-returns-extra since Pending
28254
+ * @chrome-returns-extra since Chrome 91
28287
28255
  * @param flags Options affecting how the information is returned.
28288
28256
  */
28289
28257
  export function getInfo(
@@ -28315,7 +28283,7 @@ declare namespace chrome {
28315
28283
  /**
28316
28284
  * Requests the layout info for all displays. NOTE: This is only available to Chrome OS Kiosk apps and Web UI.
28317
28285
  *
28318
- * @chrome-returns-extra since Pending
28286
+ * @chrome-returns-extra since Chrome 91
28319
28287
  * @since Chrome 53
28320
28288
  */
28321
28289
  export function getDisplayLayout(): Promise<DisplayLayout[]>;
@@ -28336,7 +28304,7 @@ declare namespace chrome {
28336
28304
  /**
28337
28305
  * Updates the properties for the display specified by `id`, according to the information provided in `info`. On failure, {@link runtime.lastError} will be set. NOTE: This is only available to Chrome OS Kiosk apps and Web UI.
28338
28306
  *
28339
- * @chrome-returns-extra since Pending
28307
+ * @chrome-returns-extra since Chrome 91
28340
28308
  * @param id The display's unique identifier.
28341
28309
  * @param info The information about display properties that should be changed. A property will be changed only if a new value for it is specified in `info`.
28342
28310
  */
@@ -28366,7 +28334,7 @@ declare namespace chrome {
28366
28334
  /**
28367
28335
  * Set the layout for all displays. Any display not included will use the default layout. If a layout would overlap or be otherwise invalid it will be adjusted to a valid layout. After layout is resolved, an onDisplayChanged event will be triggered. NOTE: This is only available to Chrome OS Kiosk apps and Web UI.
28368
28336
  *
28369
- * @chrome-returns-extra since Pending
28337
+ * @chrome-returns-extra since Chrome 91
28370
28338
  * @param layouts The layout information, required for all displays except the primary display.
28371
28339
  * @since Chrome 53
28372
28340
  */
@@ -28450,7 +28418,7 @@ declare namespace chrome {
28450
28418
  /**
28451
28419
  * Displays the native touch calibration UX for the display with `id` as display id. This will show an overlay on the screen with required instructions on how to proceed. The callback will be invoked in case of successful calibration only. If the calibration fails, this will throw an error.
28452
28420
  *
28453
- * @chrome-returns-extra since Pending
28421
+ * @chrome-returns-extra since Chrome 91
28454
28422
  * @param id The display's unique identifier.
28455
28423
  * @since Chrome 57
28456
28424
  */
@@ -28514,7 +28482,7 @@ declare namespace chrome {
28514
28482
  /**
28515
28483
  * Sets the display mode to the specified mirror mode. Each call resets the state from previous calls. Calling setDisplayProperties() will fail for the mirroring destination displays. NOTE: This is only available to Chrome OS Kiosk apps and Web UI.
28516
28484
  *
28517
- * @chrome-returns-extra since Pending
28485
+ * @chrome-returns-extra since Chrome 91
28518
28486
  * @param info The information of the mirror mode that should be applied to the display mode.
28519
28487
  * @since Chrome 65
28520
28488
  */
@@ -28561,7 +28529,7 @@ declare namespace chrome {
28561
28529
  /**
28562
28530
  * Get physical memory information.
28563
28531
  *
28564
- * @chrome-returns-extra since Pending
28532
+ * @chrome-returns-extra since Chrome 91
28565
28533
  */
28566
28534
  export function getInfo(): Promise<MemoryInfo>;
28567
28535
 
@@ -28605,7 +28573,7 @@ declare namespace chrome {
28605
28573
  /**
28606
28574
  * Retrieves information about local adapters on this system.
28607
28575
  *
28608
- * @chrome-returns-extra since Pending
28576
+ * @chrome-returns-extra since Chrome 91
28609
28577
  */
28610
28578
  export function getNetworkInterfaces(): Promise<NetworkInterface[]>;
28611
28579
 
@@ -28700,7 +28668,7 @@ declare namespace chrome {
28700
28668
  /**
28701
28669
  * Get the storage information from the system. The argument passed to the callback is an array of StorageUnitInfo objects.
28702
28670
  *
28703
- * @chrome-returns-extra since Pending
28671
+ * @chrome-returns-extra since Chrome 91
28704
28672
  */
28705
28673
  export function getInfo(): Promise<StorageUnitInfo[]>;
28706
28674
 
@@ -28717,7 +28685,7 @@ declare namespace chrome {
28717
28685
  /**
28718
28686
  * Ejects a removable storage device.
28719
28687
  *
28720
- * @chrome-returns-extra since Pending
28688
+ * @chrome-returns-extra since Chrome 91
28721
28689
  */
28722
28690
  export function ejectDevice(
28723
28691
 
@@ -28739,7 +28707,7 @@ declare namespace chrome {
28739
28707
  /**
28740
28708
  * Get the available capacity of a specified `id` storage device. The `id` is the transient device ID from StorageUnitInfo.
28741
28709
  *
28742
- * @chrome-returns-extra since Pending
28710
+ * @chrome-returns-extra since Chrome 91
28743
28711
  */
28744
28712
  export function getAvailableCapacity(
28745
28713
 
@@ -28962,7 +28930,7 @@ declare namespace chrome {
28962
28930
  /**
28963
28931
  * Retrieves details about the specified group.
28964
28932
  *
28965
- * @chrome-returns-extra since Pending
28933
+ * @chrome-returns-extra since Chrome 90
28966
28934
  */
28967
28935
  export function get(
28968
28936
 
@@ -28984,7 +28952,7 @@ declare namespace chrome {
28984
28952
  /**
28985
28953
  * Gets all groups that have the specified properties, or all groups if no properties are specified.
28986
28954
  *
28987
- * @chrome-returns-extra since Pending
28955
+ * @chrome-returns-extra since Chrome 90
28988
28956
  */
28989
28957
  export function query(
28990
28958
 
@@ -29048,7 +29016,7 @@ declare namespace chrome {
29048
29016
  /**
29049
29017
  * Modifies the properties of a group. Properties that are not specified in `updateProperties` are not modified.
29050
29018
  *
29051
- * @chrome-returns-extra since Pending
29019
+ * @chrome-returns-extra since Chrome 90
29052
29020
  * @param groupId The ID of the group to modify.
29053
29021
  */
29054
29022
  export function update(
@@ -29112,7 +29080,7 @@ declare namespace chrome {
29112
29080
  /**
29113
29081
  * Moves the group and all its tabs within its window, or to a new window.
29114
29082
  *
29115
- * @chrome-returns-extra since Pending
29083
+ * @chrome-returns-extra since Chrome 90
29116
29084
  * @param groupId The ID of the group to move.
29117
29085
  */
29118
29086
  export function move(
@@ -29656,7 +29624,7 @@ declare namespace chrome {
29656
29624
  /**
29657
29625
  * Retrieves details about the specified tab.
29658
29626
  *
29659
- * @chrome-returns-extra since Pending
29627
+ * @chrome-returns-extra since Chrome 88
29660
29628
  */
29661
29629
  export function get(
29662
29630
 
@@ -29678,7 +29646,7 @@ declare namespace chrome {
29678
29646
  /**
29679
29647
  * Gets the tab that this script call is being made from. May be undefined if called from a non-tab context (for example, a background page or popup view).
29680
29648
  *
29681
- * @chrome-returns-extra since Pending
29649
+ * @chrome-returns-extra since Chrome 88
29682
29650
  */
29683
29651
  export function getCurrent(): Promise<Tab | undefined>;
29684
29652
 
@@ -29725,7 +29693,7 @@ declare namespace chrome {
29725
29693
  /**
29726
29694
  * Sends a single request to the content script(s) in the specified tab, with an optional callback to run when a response is sent back. The {@link extension.onRequest} event is fired in each content script running in the specified tab for the current extension.
29727
29695
  *
29728
- * @chrome-returns-extra since Pending
29696
+ * @chrome-returns-extra since Chrome 99
29729
29697
  * @deprecated Please use {@link runtime.sendMessage}.
29730
29698
  * @chrome-max-manifest MV2
29731
29699
  */
@@ -29760,7 +29728,7 @@ declare namespace chrome {
29760
29728
  /**
29761
29729
  * Sends a single message to the content script(s) in the specified tab, with an optional callback to run when a response is sent back. The {@link runtime.onMessage} event is fired in each content script running in the specified tab for the current extension.
29762
29730
  *
29763
- * @chrome-returns-extra since Pending
29731
+ * @chrome-returns-extra since Chrome 99
29764
29732
  * @param message The message to send. This message should be a JSON-ifiable object.
29765
29733
  */
29766
29734
  export function sendMessage(
@@ -29823,7 +29791,7 @@ declare namespace chrome {
29823
29791
  /**
29824
29792
  * Gets the tab that is selected in the specified window.
29825
29793
  *
29826
- * @chrome-returns-extra since Pending
29794
+ * @chrome-returns-extra since Chrome 88
29827
29795
  * @param windowId Defaults to the [current window](https://developer.chrome.com/docs/extensions/reference/windows/#current-window).
29828
29796
  * @deprecated Please use {@link tabs.query} `{active: true}`.
29829
29797
  * @chrome-max-manifest MV2
@@ -29852,7 +29820,7 @@ declare namespace chrome {
29852
29820
  /**
29853
29821
  * Gets details about all tabs in the specified window.
29854
29822
  *
29855
- * @chrome-returns-extra since Pending
29823
+ * @chrome-returns-extra since Chrome 88
29856
29824
  * @param windowId Defaults to the [current window](https://developer.chrome.com/docs/extensions/reference/windows/#current-window).
29857
29825
  * @deprecated Please use {@link tabs.query} `{windowId: windowId}`.
29858
29826
  * @chrome-max-manifest MV2
@@ -29881,7 +29849,7 @@ declare namespace chrome {
29881
29849
  /**
29882
29850
  * Creates a new tab.
29883
29851
  *
29884
- * @chrome-returns-extra since Pending
29852
+ * @chrome-returns-extra since Chrome 88
29885
29853
  */
29886
29854
  export function create(
29887
29855
 
@@ -29982,7 +29950,7 @@ declare namespace chrome {
29982
29950
  /**
29983
29951
  * Duplicates a tab.
29984
29952
  *
29985
- * @chrome-returns-extra since Pending
29953
+ * @chrome-returns-extra since Chrome 88
29986
29954
  * @param tabId The ID of the tab to duplicate.
29987
29955
  */
29988
29956
  export function duplicate(
@@ -30010,7 +29978,7 @@ declare namespace chrome {
30010
29978
  /**
30011
29979
  * Gets all tabs that have the specified properties, or all tabs if no properties are specified.
30012
29980
  *
30013
- * @chrome-returns-extra since Pending
29981
+ * @chrome-returns-extra since Chrome 88
30014
29982
  */
30015
29983
  export function query(
30016
29984
 
@@ -30214,7 +30182,7 @@ declare namespace chrome {
30214
30182
  /**
30215
30183
  * Highlights the given tabs and focuses on the first of group. Will appear to do nothing if the specified tab is currently active.
30216
30184
  *
30217
- * @chrome-returns-extra since Pending
30185
+ * @chrome-returns-extra since Chrome 88
30218
30186
  */
30219
30187
  export function highlight(
30220
30188
 
@@ -30261,7 +30229,7 @@ declare namespace chrome {
30261
30229
  /**
30262
30230
  * Modifies the properties of a tab. Properties that are not specified in `updateProperties` are not modified.
30263
30231
  *
30264
- * @chrome-returns-extra since Pending
30232
+ * @chrome-returns-extra since Chrome 88
30265
30233
  * @param tabId Defaults to the selected tab of the [current window](https://developer.chrome.com/docs/extensions/reference/windows/#current-window).
30266
30234
  */
30267
30235
  export function update(
@@ -30321,7 +30289,7 @@ declare namespace chrome {
30321
30289
  /**
30322
30290
  * Modifies the properties of a tab. Properties that are not specified in `updateProperties` are not modified.
30323
30291
  *
30324
- * @chrome-returns-extra since Pending
30292
+ * @chrome-returns-extra since Chrome 88
30325
30293
  */
30326
30294
  export function update(
30327
30295
 
@@ -30506,7 +30474,7 @@ declare namespace chrome {
30506
30474
  /**
30507
30475
  * Moves one or more tabs to a new position within its window, or to a new window. Note that tabs can only be moved to and from normal (window.type === "normal") windows.
30508
30476
  *
30509
- * @chrome-returns-extra since Pending
30477
+ * @chrome-returns-extra since Chrome 88
30510
30478
  * @param tabIds The tab ID or list of tab IDs to move.
30511
30479
  */
30512
30480
  export function move(
@@ -30560,7 +30528,7 @@ declare namespace chrome {
30560
30528
  /**
30561
30529
  * Reload a tab.
30562
30530
  *
30563
- * @chrome-returns-extra since Pending
30531
+ * @chrome-returns-extra since Chrome 88
30564
30532
  * @param tabId The ID of the tab to reload; defaults to the selected tab of the current window.
30565
30533
  */
30566
30534
  export function reload(
@@ -30599,7 +30567,7 @@ declare namespace chrome {
30599
30567
  /**
30600
30568
  * Closes one or more tabs.
30601
30569
  *
30602
- * @chrome-returns-extra since Pending
30570
+ * @chrome-returns-extra since Chrome 88
30603
30571
  * @param tabIds The tab ID or list of tab IDs to close.
30604
30572
  */
30605
30573
  export function remove(
@@ -30622,7 +30590,6 @@ declare namespace chrome {
30622
30590
  /**
30623
30591
  * Adds one or more tabs to a specified group, or if no group is specified, adds the given tabs to a newly created group.
30624
30592
  *
30625
- * @chrome-returns-extra since Pending
30626
30593
  * @since Chrome 88
30627
30594
  */
30628
30595
  export function group(
@@ -30694,7 +30661,6 @@ declare namespace chrome {
30694
30661
  /**
30695
30662
  * Removes one or more tabs from their respective groups. If any groups become empty, they are deleted.
30696
30663
  *
30697
- * @chrome-returns-extra since Pending
30698
30664
  * @param tabIds The tab ID or list of tab IDs to remove from their respective groups.
30699
30665
  * @since Chrome 88
30700
30666
  */
@@ -30719,7 +30685,7 @@ declare namespace chrome {
30719
30685
  /**
30720
30686
  * Detects the primary language of the content in a tab.
30721
30687
  *
30722
- * @chrome-returns-extra since Pending
30688
+ * @chrome-returns-extra since Chrome 88
30723
30689
  * @param tabId Defaults to the active tab of the [current window](https://developer.chrome.com/docs/extensions/reference/windows/#current-window).
30724
30690
  */
30725
30691
  export function detectLanguage(
@@ -30747,7 +30713,7 @@ declare namespace chrome {
30747
30713
  /**
30748
30714
  * Captures the visible area of the currently active tab in the specified window. In order to call this method, the extension must have either the [<all\_urls>](https://developer.chrome.com/docs/extensions/declare_permissions) permission or the [activeTab](https://developer.chrome.com/docs/extensions/activeTab) permission. In addition to sites that extensions can normally access, this method allows extensions to capture sensitive sites that are otherwise restricted, including chrome:-scheme pages, other extensions' pages, and data: URLs. These sensitive sites can only be captured with the activeTab permission. File URLs may be captured only if the extension has been granted file access.
30749
30715
  *
30750
- * @chrome-returns-extra since Pending
30716
+ * @chrome-returns-extra since Chrome 88
30751
30717
  * @param windowId The target window. Defaults to the [current window](https://developer.chrome.com/docs/extensions/reference/windows/#current-window).
30752
30718
  */
30753
30719
  export function captureVisibleTab(
@@ -30779,7 +30745,7 @@ declare namespace chrome {
30779
30745
  /**
30780
30746
  * Injects JavaScript code into a page. For details, see the [programmatic injection](https://developer.chrome.com/docs/extensions/content_scripts#pi) section of the content scripts doc.
30781
30747
  *
30782
- * @chrome-returns-extra since Pending
30748
+ * @chrome-returns-extra since Chrome 88
30783
30749
  * @param tabId The ID of the tab in which to run the script; defaults to the active tab of the current window.
30784
30750
  * @param details Details of the script to run. Either the code or the file property must be set, but both may not be set at the same time.
30785
30751
  * @deprecated Replaced by {@link scripting.executeScript} in Manifest V3.
@@ -30796,7 +30762,7 @@ declare namespace chrome {
30796
30762
  /**
30797
30763
  * Injects JavaScript code into a page. For details, see the [programmatic injection](https://developer.chrome.com/docs/extensions/content_scripts#pi) section of the content scripts doc.
30798
30764
  *
30799
- * @chrome-returns-extra since Pending
30765
+ * @chrome-returns-extra since Chrome 88
30800
30766
  * @param details Details of the script to run. Either the code or the file property must be set, but both may not be set at the same time.
30801
30767
  * @deprecated Replaced by {@link scripting.executeScript} in Manifest V3.
30802
30768
  * @chrome-max-manifest MV2
@@ -30855,7 +30821,7 @@ declare namespace chrome {
30855
30821
  /**
30856
30822
  * Injects CSS into a page. Styles inserted with this method can be removed with {@link scripting.removeCSS}. For details, see the [programmatic injection](https://developer.chrome.com/docs/extensions/content_scripts#pi) section of the content scripts doc.
30857
30823
  *
30858
- * @chrome-returns-extra since Pending
30824
+ * @chrome-returns-extra since Chrome 88
30859
30825
  * @param tabId The ID of the tab in which to insert the CSS; defaults to the active tab of the current window.
30860
30826
  * @param details Details of the CSS text to insert. Either the code or the file property must be set, but both may not be set at the same time.
30861
30827
  * @deprecated Replaced by {@link scripting.insertCSS} in Manifest V3.
@@ -30872,7 +30838,7 @@ declare namespace chrome {
30872
30838
  /**
30873
30839
  * Injects CSS into a page. Styles inserted with this method can be removed with {@link scripting.removeCSS}. For details, see the [programmatic injection](https://developer.chrome.com/docs/extensions/content_scripts#pi) section of the content scripts doc.
30874
30840
  *
30875
- * @chrome-returns-extra since Pending
30841
+ * @chrome-returns-extra since Chrome 88
30876
30842
  * @param details Details of the CSS text to insert. Either the code or the file property must be set, but both may not be set at the same time.
30877
30843
  * @deprecated Replaced by {@link scripting.insertCSS} in Manifest V3.
30878
30844
  * @chrome-max-manifest MV2
@@ -30921,7 +30887,7 @@ declare namespace chrome {
30921
30887
  /**
30922
30888
  * Removes from a page CSS that was previously injected by a call to {@link scripting.insertCSS}.
30923
30889
  *
30924
- * @chrome-returns-extra since Pending
30890
+ * @chrome-returns-extra since Chrome 88
30925
30891
  * @param tabId The ID of the tab from which to remove the CSS; defaults to the active tab of the current window.
30926
30892
  * @param details Details of the CSS text to remove. Either the code or the file property must be set, but both may not be set at the same time.
30927
30893
  * @deprecated Replaced by {@link scripting.removeCSS} in Manifest V3.
@@ -30939,7 +30905,7 @@ declare namespace chrome {
30939
30905
  /**
30940
30906
  * Removes from a page CSS that was previously injected by a call to {@link scripting.insertCSS}.
30941
30907
  *
30942
- * @chrome-returns-extra since Pending
30908
+ * @chrome-returns-extra since Chrome 88
30943
30909
  * @param details Details of the CSS text to remove. Either the code or the file property must be set, but both may not be set at the same time.
30944
30910
  * @deprecated Replaced by {@link scripting.removeCSS} in Manifest V3.
30945
30911
  * @since Chrome 87
@@ -30991,7 +30957,7 @@ declare namespace chrome {
30991
30957
  /**
30992
30958
  * Zooms a specified tab.
30993
30959
  *
30994
- * @chrome-returns-extra since Pending
30960
+ * @chrome-returns-extra since Chrome 88
30995
30961
  * @param tabId The ID of the tab to zoom; defaults to the active tab of the current window.
30996
30962
  * @param zoomFactor The new zoom factor. A value of `0` sets the tab to its current default zoom factor. Values greater than `0` specify a (possibly non-default) zoom factor for the tab.
30997
30963
  */
@@ -31005,7 +30971,7 @@ declare namespace chrome {
31005
30971
  /**
31006
30972
  * Zooms a specified tab.
31007
30973
  *
31008
- * @chrome-returns-extra since Pending
30974
+ * @chrome-returns-extra since Chrome 88
31009
30975
  * @param zoomFactor The new zoom factor. A value of `0` sets the tab to its current default zoom factor. Values greater than `0` specify a (possibly non-default) zoom factor for the tab.
31010
30976
  */
31011
30977
  export function setZoom(
@@ -31045,7 +31011,7 @@ declare namespace chrome {
31045
31011
  /**
31046
31012
  * Gets the current zoom factor of a specified tab.
31047
31013
  *
31048
- * @chrome-returns-extra since Pending
31014
+ * @chrome-returns-extra since Chrome 88
31049
31015
  * @param tabId The ID of the tab to get the current zoom factor from; defaults to the active tab of the current window.
31050
31016
  */
31051
31017
  export function getZoom(
@@ -31074,7 +31040,7 @@ declare namespace chrome {
31074
31040
  /**
31075
31041
  * Sets the zoom settings for a specified tab, which define how zoom changes are handled. These settings are reset to defaults upon navigating the tab.
31076
31042
  *
31077
- * @chrome-returns-extra since Pending
31043
+ * @chrome-returns-extra since Chrome 88
31078
31044
  * @param tabId The ID of the tab to change the zoom settings for; defaults to the active tab of the current window.
31079
31045
  * @param zoomSettings Defines how zoom changes are handled and at what scope.
31080
31046
  */
@@ -31088,7 +31054,7 @@ declare namespace chrome {
31088
31054
  /**
31089
31055
  * Sets the zoom settings for a specified tab, which define how zoom changes are handled. These settings are reset to defaults upon navigating the tab.
31090
31056
  *
31091
- * @chrome-returns-extra since Pending
31057
+ * @chrome-returns-extra since Chrome 88
31092
31058
  * @param zoomSettings Defines how zoom changes are handled and at what scope.
31093
31059
  */
31094
31060
  export function setZoomSettings(
@@ -31128,7 +31094,7 @@ declare namespace chrome {
31128
31094
  /**
31129
31095
  * Gets the current zoom settings of a specified tab.
31130
31096
  *
31131
- * @chrome-returns-extra since Pending
31097
+ * @chrome-returns-extra since Chrome 88
31132
31098
  * @param tabId The ID of the tab to get the current zoom settings from; defaults to the active tab of the current window.
31133
31099
  */
31134
31100
  export function getZoomSettings(
@@ -31157,7 +31123,7 @@ declare namespace chrome {
31157
31123
  /**
31158
31124
  * Discards a tab from memory. Discarded tabs are still visible on the tab strip and are reloaded when activated.
31159
31125
  *
31160
- * @chrome-returns-extra since Pending
31126
+ * @chrome-returns-extra since Chrome 88
31161
31127
  * @param tabId The ID of the tab to be discarded. If specified, the tab is discarded unless it is active or already discarded. If omitted, the browser discards the least important tab. This can fail if no discardable tabs exist.
31162
31128
  * @since Chrome 54
31163
31129
  */
@@ -31188,7 +31154,7 @@ declare namespace chrome {
31188
31154
  /**
31189
31155
  * Go foward to the next page, if one is available.
31190
31156
  *
31191
- * @chrome-returns-extra since Pending
31157
+ * @chrome-returns-extra since Chrome 88
31192
31158
  * @param tabId The ID of the tab to navigate forward; defaults to the selected tab of the current window.
31193
31159
  * @since Chrome 72
31194
31160
  */
@@ -31213,7 +31179,7 @@ declare namespace chrome {
31213
31179
  /**
31214
31180
  * Go back to the previous page, if one is available.
31215
31181
  *
31216
- * @chrome-returns-extra since Pending
31182
+ * @chrome-returns-extra since Chrome 88
31217
31183
  * @param tabId The ID of the tab to navigate back; defaults to the selected tab of the current window.
31218
31184
  * @since Chrome 72
31219
31185
  */
@@ -31262,7 +31228,7 @@ declare namespace chrome {
31262
31228
  /**
31263
31229
  * Gets a list of top sites.
31264
31230
  *
31265
- * @chrome-returns-extra since Pending
31231
+ * @chrome-returns-extra since Chrome 96
31266
31232
  */
31267
31233
  export function get(): Promise<MostVisitedURL[]>;
31268
31234
 
@@ -31436,7 +31402,7 @@ declare namespace chrome {
31436
31402
  /**
31437
31403
  * Speaks text using a text-to-speech engine.
31438
31404
  *
31439
- * @chrome-returns-extra since Pending
31405
+ * @chrome-returns-extra since Chrome 101
31440
31406
  * @param utterance The text to speak, either plain text or a complete, well-formed SSML document. Speech engines that do not support SSML will strip away the tags and speak the text. The maximum length of the text is 32,768 characters.
31441
31407
  * @param options The speech options.
31442
31408
  */
@@ -31481,7 +31447,7 @@ declare namespace chrome {
31481
31447
  /**
31482
31448
  * Checks whether the engine is currently speaking. On Mac OS X, the result is true whenever the system speech engine is speaking, even if the speech wasn't initiated by Chrome.
31483
31449
  *
31484
- * @chrome-returns-extra since Pending
31450
+ * @chrome-returns-extra since Chrome 101
31485
31451
  */
31486
31452
  export function isSpeaking(): Promise<boolean>;
31487
31453
 
@@ -31501,7 +31467,7 @@ declare namespace chrome {
31501
31467
  /**
31502
31468
  * Gets an array of all available voices.
31503
31469
  *
31504
- * @chrome-returns-extra since Pending
31470
+ * @chrome-returns-extra since Chrome 101
31505
31471
  */
31506
31472
  export function getVoices(): Promise<TtsVoice[]>;
31507
31473
 
@@ -31741,7 +31707,7 @@ declare namespace chrome {
31741
31707
  /**
31742
31708
  * Gets the value of a setting.
31743
31709
  *
31744
- * @chrome-returns-extra since Pending
31710
+ * @chrome-returns-extra since Chrome 96
31745
31711
  * @param details Which setting to consider.
31746
31712
  */
31747
31713
  get(
@@ -31815,7 +31781,7 @@ declare namespace chrome {
31815
31781
  /**
31816
31782
  * Sets the value of a setting.
31817
31783
  *
31818
- * @chrome-returns-extra since Pending
31784
+ * @chrome-returns-extra since Chrome 96
31819
31785
  * @param details Which setting to change.
31820
31786
  */
31821
31787
  set(
@@ -31863,7 +31829,7 @@ declare namespace chrome {
31863
31829
  /**
31864
31830
  * Clears the setting, restoring any default value.
31865
31831
  *
31866
- * @chrome-returns-extra since Pending
31832
+ * @chrome-returns-extra since Chrome 96
31867
31833
  * @param details Which setting to clear.
31868
31834
  */
31869
31835
  clear(
@@ -32645,7 +32611,7 @@ declare namespace chrome {
32645
32611
  /**
32646
32612
  * Sets restrictions on features provided by the virtual keyboard.
32647
32613
  *
32648
- * @chrome-returns-extra since Pending
32614
+ * @chrome-returns-extra since Chrome 96
32649
32615
  * @param restrictions the preferences to enabled/disabled virtual keyboard features.
32650
32616
  */
32651
32617
  export function restrictFeatures(
@@ -32804,7 +32770,7 @@ declare namespace chrome {
32804
32770
  /**
32805
32771
  * Creates a new VPN configuration that persists across multiple login sessions of the user.
32806
32772
  *
32807
- * @chrome-returns-extra since Pending
32773
+ * @chrome-returns-extra since Chrome 96
32808
32774
  * @param name The name of the VPN configuration.
32809
32775
  */
32810
32776
  export function createConfig(
@@ -32833,7 +32799,7 @@ declare namespace chrome {
32833
32799
  /**
32834
32800
  * Destroys a VPN configuration created by the extension.
32835
32801
  *
32836
- * @chrome-returns-extra since Pending
32802
+ * @chrome-returns-extra since Chrome 96
32837
32803
  * @param id ID of the VPN configuration to destroy.
32838
32804
  */
32839
32805
  export function destroyConfig(
@@ -32857,7 +32823,7 @@ declare namespace chrome {
32857
32823
  /**
32858
32824
  * Sets the parameters for the VPN session. This should be called immediately after `"connected"` is received from the platform. This will succeed only when the VPN session is owned by the extension.
32859
32825
  *
32860
- * @chrome-returns-extra since Pending
32826
+ * @chrome-returns-extra since Chrome 96
32861
32827
  * @param parameters The parameters for the VPN session.
32862
32828
  */
32863
32829
  export function setParameters(
@@ -32881,7 +32847,7 @@ declare namespace chrome {
32881
32847
  /**
32882
32848
  * Sends an IP packet through the tunnel created for the VPN session. This will succeed only when the VPN session is owned by the extension.
32883
32849
  *
32884
- * @chrome-returns-extra since Pending
32850
+ * @chrome-returns-extra since Chrome 96
32885
32851
  * @param data The IP packet to be sent to the platform.
32886
32852
  */
32887
32853
  export function sendPacket(
@@ -32905,7 +32871,7 @@ declare namespace chrome {
32905
32871
  /**
32906
32872
  * Notifies the VPN session state to the platform. This will succeed only when the VPN session is owned by the extension.
32907
32873
  *
32908
- * @chrome-returns-extra since Pending
32874
+ * @chrome-returns-extra since Chrome 96
32909
32875
  * @param state The VPN session state of the VPN client.
32910
32876
  */
32911
32877
  export function notifyConnectionStateChanged(
@@ -32947,7 +32913,7 @@ declare namespace chrome {
32947
32913
  /**
32948
32914
  * Sets wallpaper to the image at _url_ or _wallpaperData_ with the specified _layout_
32949
32915
  *
32950
- * @chrome-returns-extra since Pending
32916
+ * @chrome-returns-extra since Chrome 96
32951
32917
  */
32952
32918
  export function setWallpaper(
32953
32919
 
@@ -33948,7 +33914,7 @@ declare namespace chrome {
33948
33914
  /**
33949
33915
  * Retrieves information about the given frame. A frame refers to an <iframe> or a <frame> of a web page and is identified by a tab ID and a frame ID.
33950
33916
  *
33951
- * @chrome-returns-extra since Pending
33917
+ * @chrome-returns-extra since Chrome 93
33952
33918
  * @param details Information about the frame to retrieve information about.
33953
33919
  */
33954
33920
  export function getFrame(
@@ -33999,21 +33965,29 @@ declare namespace chrome {
33999
33965
 
34000
33966
  /**
34001
33967
  * A UUID of the document loaded.
33968
+ *
33969
+ * @since Chrome 106
34002
33970
  */
34003
33971
  documentId: string,
34004
33972
 
34005
33973
  /**
34006
33974
  * A UUID of the parent document owning this frame. This is not set if there is no parent.
33975
+ *
33976
+ * @since Chrome 106
34007
33977
  */
34008
33978
  parentDocumentId?: string,
34009
33979
 
34010
33980
  /**
34011
33981
  * The lifecycle the document is in.
33982
+ *
33983
+ * @since Chrome 106
34012
33984
  */
34013
33985
  documentLifecycle: extensionTypes.DocumentLifecycle,
34014
33986
 
34015
33987
  /**
34016
33988
  * The type of frame the navigation occurred in.
33989
+ *
33990
+ * @since Chrome 106
34017
33991
  */
34018
33992
  frameType: extensionTypes.FrameType,
34019
33993
  } | undefined>;
@@ -34108,7 +34082,7 @@ declare namespace chrome {
34108
34082
  /**
34109
34083
  * Retrieves information about all frames of a given tab.
34110
34084
  *
34111
- * @chrome-returns-extra since Pending
34085
+ * @chrome-returns-extra since Chrome 93
34112
34086
  * @param details Information about the tab to retrieve all frames from.
34113
34087
  */
34114
34088
  export function getAllFrames(
@@ -34149,21 +34123,29 @@ declare namespace chrome {
34149
34123
 
34150
34124
  /**
34151
34125
  * A UUID of the document loaded.
34126
+ *
34127
+ * @since Chrome 106
34152
34128
  */
34153
34129
  documentId: string,
34154
34130
 
34155
34131
  /**
34156
34132
  * A UUID of the parent document owning this frame. This is not set if there is no parent.
34133
+ *
34134
+ * @since Chrome 106
34157
34135
  */
34158
34136
  parentDocumentId?: string,
34159
34137
 
34160
34138
  /**
34161
34139
  * The lifecycle the document is in.
34140
+ *
34141
+ * @since Chrome 106
34162
34142
  */
34163
34143
  documentLifecycle: extensionTypes.DocumentLifecycle,
34164
34144
 
34165
34145
  /**
34166
34146
  * The type of frame the navigation occurred in.
34147
+ *
34148
+ * @since Chrome 106
34167
34149
  */
34168
34150
  frameType: extensionTypes.FrameType,
34169
34151
  }[] | undefined>;
@@ -36998,7 +36980,7 @@ declare namespace chrome {
36998
36980
  /**
36999
36981
  * Gets details about a window.
37000
36982
  *
37001
- * @chrome-returns-extra since Pending
36983
+ * @chrome-returns-extra since Chrome 88
37002
36984
  */
37003
36985
  export function get(
37004
36986
 
@@ -37030,7 +37012,7 @@ declare namespace chrome {
37030
37012
  /**
37031
37013
  * Gets the [current window](https://developer.chrome.com/docs/extensions/reference/windows/#current-window).
37032
37014
  *
37033
- * @chrome-returns-extra since Pending
37015
+ * @chrome-returns-extra since Chrome 88
37034
37016
  */
37035
37017
  export function getCurrent(
37036
37018
 
@@ -37058,7 +37040,7 @@ declare namespace chrome {
37058
37040
  /**
37059
37041
  * Gets the window that was most recently focused — typically the window 'on top'.
37060
37042
  *
37061
- * @chrome-returns-extra since Pending
37043
+ * @chrome-returns-extra since Chrome 88
37062
37044
  */
37063
37045
  export function getLastFocused(
37064
37046
 
@@ -37086,7 +37068,7 @@ declare namespace chrome {
37086
37068
  /**
37087
37069
  * Gets all windows.
37088
37070
  *
37089
- * @chrome-returns-extra since Pending
37071
+ * @chrome-returns-extra since Chrome 88
37090
37072
  */
37091
37073
  export function getAll(
37092
37074
 
@@ -37114,7 +37096,7 @@ declare namespace chrome {
37114
37096
  /**
37115
37097
  * Creates (opens) a new browser window with any optional sizing, position, or default URL provided.
37116
37098
  *
37117
- * @chrome-returns-extra since Pending
37099
+ * @chrome-returns-extra since Chrome 88
37118
37100
  */
37119
37101
  export function create(
37120
37102
 
@@ -37259,7 +37241,7 @@ declare namespace chrome {
37259
37241
  /**
37260
37242
  * Updates the properties of a window. Specify only the properties that to be changed; unspecified properties are unchanged.
37261
37243
  *
37262
- * @chrome-returns-extra since Pending
37244
+ * @chrome-returns-extra since Chrome 88
37263
37245
  */
37264
37246
  export function update(
37265
37247
 
@@ -37357,7 +37339,7 @@ declare namespace chrome {
37357
37339
  /**
37358
37340
  * Removes (closes) a window and all the tabs inside it.
37359
37341
  *
37360
- * @chrome-returns-extra since Pending
37342
+ * @chrome-returns-extra since Chrome 88
37361
37343
  */
37362
37344
  export function remove(
37363
37345