@types/chrome 0.0.254 → 0.0.256
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.
- chrome/README.md +1 -1
- chrome/index.d.ts +8 -1
- chrome/package.json +2 -2
chrome/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for chrome (http://developer.chrome.com/e
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/chrome.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Fri, 05 Jan 2024 07:06:59 GMT
|
|
12
12
|
* Dependencies: [@types/filesystem](https://npmjs.com/package/@types/filesystem), [@types/har-format](https://npmjs.com/package/@types/har-format)
|
|
13
13
|
|
|
14
14
|
# Credits
|
chrome/index.d.ts
CHANGED
|
@@ -6242,6 +6242,11 @@ declare namespace chrome.pageCapture {
|
|
|
6242
6242
|
* Parameter mhtmlData: The MHTML data as a Blob.
|
|
6243
6243
|
*/
|
|
6244
6244
|
export function saveAsMHTML(details: SaveDetails, callback: (mhtmlData?: Blob) => void): void;
|
|
6245
|
+
/**
|
|
6246
|
+
* Saves the content of the tab with given id as MHTML.
|
|
6247
|
+
* @since Chrome 116 MV3
|
|
6248
|
+
*/
|
|
6249
|
+
export function saveAsMHTML(details: SaveDetails): Promise<Blob | undefined>;
|
|
6245
6250
|
}
|
|
6246
6251
|
|
|
6247
6252
|
////////////////////
|
|
@@ -7235,7 +7240,9 @@ declare namespace chrome.runtime {
|
|
|
7235
7240
|
icons?: ManifestIcons | undefined;
|
|
7236
7241
|
|
|
7237
7242
|
// Optional
|
|
7238
|
-
author?:
|
|
7243
|
+
author?: {
|
|
7244
|
+
email: string;
|
|
7245
|
+
} | undefined;
|
|
7239
7246
|
background_page?: string | undefined;
|
|
7240
7247
|
chrome_settings_overrides?: {
|
|
7241
7248
|
homepage?: string | undefined;
|
chrome/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/chrome",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.256",
|
|
4
4
|
"description": "TypeScript definitions for chrome",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/chrome",
|
|
6
6
|
"license": "MIT",
|
|
@@ -93,6 +93,6 @@
|
|
|
93
93
|
"@types/filesystem": "*",
|
|
94
94
|
"@types/har-format": "*"
|
|
95
95
|
},
|
|
96
|
-
"typesPublisherContentHash": "
|
|
96
|
+
"typesPublisherContentHash": "c2685c92f0b761556508a66a51a25539da302cf89a4e3dc1a341bc0142c6871f",
|
|
97
97
|
"typeScriptVersion": "4.6"
|
|
98
98
|
}
|