You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: types/chrome/index.d.ts
+44-2Lines changed: 44 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1029,7 +1029,7 @@ declare namespace chrome {
1029
1029
cookies?: boolean | undefined;
1030
1030
/**
1031
1031
* Stored passwords.
1032
-
* @deprecated Support for password deletion through extensions has been removed. This data type will be ignored.
1032
+
* @deprecated since Chrome 144. Support for password deletion through extensions has been removed. This data type will be ignored.
1033
1033
*/
1034
1034
passwords?: boolean | undefined;
1035
1035
/**
@@ -1125,7 +1125,7 @@ declare namespace chrome {
1125
1125
* Clears the browser's stored passwords.
1126
1126
*
1127
1127
* Can return its result via Promise in Manifest V3 or later since Chrome 96.
1128
-
* @deprecated Support for password deletion through extensions has been removed. This function has no effect.
1128
+
* @deprecated since Chrome 144. Support for password deletion through extensions has been removed. This function has no effect.
1129
1129
*/
1130
1130
export function removePasswords(options: RemovalOptions): Promise<void>;
1131
1131
export function removePasswords(options: RemovalOptions, callback: () => void): void;
@@ -3779,6 +3779,8 @@ declare namespace chrome {
3779
3779
BLOCKED_SCAN_FAILED = "blockedScanFailed",
3780
3780
/** For use by the Secure Enterprise Browser extension. When required, Chrome will block the download to disc and download the file directly to Google Drive. */
3781
3781
FORCE_SAVE_TO_GDRIVE = "forceSaveToGdrive",
3782
+
/** For use by the Secure Enterprise Browser extension. When required, Chrome will block the download to disc and download the file directly to OneDrive. */
/** The HTTP response headers that have been received with this response. */
13284
13307
responseHeaders?: HttpHeader[];
13308
+
/**
13309
+
* Information about the TLS/QUIC connection used for the underlying connection. Only provided if `securityInfo` is specified in the `extraInfoSpec` parameter.
13310
+
* @since Chrome 144
13311
+
*/
13312
+
securityInfo?: SecurityInfo;
13285
13313
/** Standard HTTP status code returned by the server. */
13286
13314
statusCode: number;
13287
13315
/** HTTP status line of the response or the 'HTTP/0.9 200 OK' string for HTTP/0.9 responses (i.e., responses that lack a status line) or an empty string if there are no headers.*/
0 commit comments