chrome-types 0.1.137 → 0.1.138
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/_all.d.ts +4 -9
- package/index.d.ts +4 -9
- package/package.json +2 -2
package/_all.d.ts
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
|
-
// Generated on
|
|
18
|
-
// Built at
|
|
17
|
+
// Generated on Sat Sep 24 2022 22:29:29 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at d8fc081dc523b7d73edbc126ec9370ceffab2faf
|
|
19
19
|
|
|
20
20
|
// Includes all types, including MV2 + Platform Apps APIs.
|
|
21
21
|
|
|
@@ -7673,7 +7673,7 @@ declare namespace chrome {
|
|
|
7673
7673
|
/**
|
|
7674
7674
|
* @since Chrome 44
|
|
7675
7675
|
*/
|
|
7676
|
-
export type PpapiBrokerContentSetting = "
|
|
7676
|
+
export type PpapiBrokerContentSetting = "block";
|
|
7677
7677
|
|
|
7678
7678
|
/**
|
|
7679
7679
|
* @since Chrome 44
|
|
@@ -7779,12 +7779,7 @@ declare namespace chrome {
|
|
|
7779
7779
|
export const camera: ContentSetting<CameraContentSetting>;
|
|
7780
7780
|
|
|
7781
7781
|
/**
|
|
7782
|
-
*
|
|
7783
|
-
* `allow`: Allow sites to run plugins unsandboxed,
|
|
7784
|
-
* `block`: Don't allow sites to run plugins unsandboxed,
|
|
7785
|
-
* `ask`: Ask when a site wants to run a plugin unsandboxed.
|
|
7786
|
-
* Default is `ask`.
|
|
7787
|
-
* The primary URL is the URL of the top-level frame. The secondary URL is not used.
|
|
7782
|
+
* _Deprecated._ Previously, controlled whether to allow sites to run plugins unsandboxed, however, with the Flash broker process removed in Chrome 88, this permission no longer has any effect. Value is always `block`. Calls to `set()` and `clear()` will be ignored.
|
|
7788
7783
|
*/
|
|
7789
7784
|
export const unsandboxedPlugins: ContentSetting<PpapiBrokerContentSetting>;
|
|
7790
7785
|
|
package/index.d.ts
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
|
-
// Generated on
|
|
18
|
-
// Built at
|
|
17
|
+
// Generated on Sat Sep 24 2022 22:29:24 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at d8fc081dc523b7d73edbc126ec9370ceffab2faf
|
|
19
19
|
|
|
20
20
|
// Includes MV3+ APIs only.
|
|
21
21
|
|
|
@@ -4475,7 +4475,7 @@ declare namespace chrome {
|
|
|
4475
4475
|
/**
|
|
4476
4476
|
* @since Chrome 44
|
|
4477
4477
|
*/
|
|
4478
|
-
export type PpapiBrokerContentSetting = "
|
|
4478
|
+
export type PpapiBrokerContentSetting = "block";
|
|
4479
4479
|
|
|
4480
4480
|
/**
|
|
4481
4481
|
* @since Chrome 44
|
|
@@ -4581,12 +4581,7 @@ declare namespace chrome {
|
|
|
4581
4581
|
export const camera: ContentSetting<CameraContentSetting>;
|
|
4582
4582
|
|
|
4583
4583
|
/**
|
|
4584
|
-
*
|
|
4585
|
-
* `allow`: Allow sites to run plugins unsandboxed,
|
|
4586
|
-
* `block`: Don't allow sites to run plugins unsandboxed,
|
|
4587
|
-
* `ask`: Ask when a site wants to run a plugin unsandboxed.
|
|
4588
|
-
* Default is `ask`.
|
|
4589
|
-
* The primary URL is the URL of the top-level frame. The secondary URL is not used.
|
|
4584
|
+
* _Deprecated._ Previously, controlled whether to allow sites to run plugins unsandboxed, however, with the Flash broker process removed in Chrome 88, this permission no longer has any effect. Value is always `block`. Calls to `set()` and `clear()` will be ignored.
|
|
4590
4585
|
*/
|
|
4591
4586
|
export const unsandboxedPlugins: ContentSetting<PpapiBrokerContentSetting>;
|
|
4592
4587
|
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"type": "module",
|
|
6
6
|
"name": "chrome-types",
|
|
7
7
|
"config": {
|
|
8
|
-
"build-hash": "
|
|
8
|
+
"build-hash": "86fc70c2b207a077"
|
|
9
9
|
},
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
@@ -16,5 +16,5 @@
|
|
|
16
16
|
"url": "https://github.com/GoogleChrome/chrome-types/issues"
|
|
17
17
|
},
|
|
18
18
|
"homepage": "https://github.com/GoogleChrome/chrome-types",
|
|
19
|
-
"version": "0.1.
|
|
19
|
+
"version": "0.1.138"
|
|
20
20
|
}
|