@types/chrome 0.0.211 → 0.0.212
Sign up to get free protection for your applications and to get access to all the features.
- chrome/README.md +1 -1
- chrome/index.d.ts +10 -10
- chrome/package.json +2 -2
chrome/README.md
CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for Chrome extension development (http://
|
|
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: Sat, 04 Feb 2023 01:02:41 GMT
|
12
12
|
* Dependencies: [@types/filesystem](https://npmjs.com/package/@types/filesystem), [@types/har-format](https://npmjs.com/package/@types/har-format)
|
13
13
|
* Global values: `chrome`
|
14
14
|
|
chrome/index.d.ts
CHANGED
@@ -6013,25 +6013,25 @@ declare namespace chrome.offscreen {
|
|
6013
6013
|
/** The reason(s) the extension is creating the offscreen document. */
|
6014
6014
|
export enum Reason {
|
6015
6015
|
/** A reason used for testing purposes only. */
|
6016
|
-
TESTING,
|
6016
|
+
TESTING = "TESTING",
|
6017
6017
|
/** The offscreen document is responsible for playing audio. */
|
6018
|
-
AUDIO_PLAYBACK,
|
6018
|
+
AUDIO_PLAYBACK = "AUDIO_PLAYBACK",
|
6019
6019
|
/** The offscreen document needs to embed and script an iframe in order to modify the iframe's content. */
|
6020
|
-
IFRAME_SCRIPTING,
|
6020
|
+
IFRAME_SCRIPTING = "IFRAME_SCRIPTING",
|
6021
6021
|
/** The offscreen document needs to embed an iframe and scrape its DOM to extract information. */
|
6022
|
-
DOM_SCRAPING,
|
6022
|
+
DOM_SCRAPING = "DOM_SCRAPING",
|
6023
6023
|
/** The offscreen document needs to interact with Blob objects (including URL.createObjectURL()). */
|
6024
|
-
BLOBS,
|
6024
|
+
BLOBS = "BLOBS",
|
6025
6025
|
/** The offscreen document needs to use the DOMParser API. */
|
6026
|
-
DOM_PARSER,
|
6026
|
+
DOM_PARSER = "DOM_PARSER",
|
6027
6027
|
/** The offscreen document needs to interact with media streams from user media (e.g. getUserMedia()). */
|
6028
|
-
USER_MEDIA,
|
6028
|
+
USER_MEDIA = "USER_MEDIA",
|
6029
6029
|
/** The offscreen document needs to interact with media streams from display media (e.g. getDisplayMedia()). */
|
6030
|
-
DISPLAY_MEDIA,
|
6030
|
+
DISPLAY_MEDIA = "DISPLAY_MEDIA",
|
6031
6031
|
/** The offscreen document needs to use WebRTC APIs. */
|
6032
|
-
WEB_RTC,
|
6032
|
+
WEB_RTC = "WEB_RTC",
|
6033
6033
|
/** The offscreen document needs to interact with the clipboard APIs(e.g. Navigator.clipboard). */
|
6034
|
-
CLIPBOARD
|
6034
|
+
CLIPBOARD = "CLIPBOARD"
|
6035
6035
|
}
|
6036
6036
|
|
6037
6037
|
/** The parameters describing the offscreen document to create. */
|
chrome/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@types/chrome",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.212",
|
4
4
|
"description": "TypeScript definitions for Chrome extension development",
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/chrome",
|
6
6
|
"license": "MIT",
|
@@ -88,6 +88,6 @@
|
|
88
88
|
"@types/filesystem": "*",
|
89
89
|
"@types/har-format": "*"
|
90
90
|
},
|
91
|
-
"typesPublisherContentHash": "
|
91
|
+
"typesPublisherContentHash": "69819e9db9fc8a004b75dcb85c1bebdb4a363bf067b8b551ad4f57178d99a0d6",
|
92
92
|
"typeScriptVersion": "4.2"
|
93
93
|
}
|