chrome-types 0.1.174 → 0.1.176
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 +31 -82
- package/index.d.ts +31 -82
- 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 Fri Mar 03 2023 22:29:42 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 939564227c747ae6dc4a9e09fd31747150e96841
|
|
19
19
|
|
|
20
20
|
// Includes all types, including MV2 + Platform Apps APIs.
|
|
21
21
|
|
|
@@ -9030,7 +9030,7 @@ declare namespace chrome {
|
|
|
9030
9030
|
*
|
|
9031
9031
|
* @since Chrome 91
|
|
9032
9032
|
*/
|
|
9033
|
-
export type RequestMethod = "connect" | "delete" | "get" | "head" | "options" | "patch" | "post" | "put";
|
|
9033
|
+
export type RequestMethod = "connect" | "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "other";
|
|
9034
9034
|
|
|
9035
9035
|
/**
|
|
9036
9036
|
* This describes whether the request is first or third party to the frame in which it originated. A request is said to be first party if it has the same domain (eTLD+1) as the frame in which the request originated.
|
|
@@ -9235,13 +9235,14 @@ declare namespace chrome {
|
|
|
9235
9235
|
* * The entries must consist of only ascii characters.
|
|
9236
9236
|
* * Use punycode encoding for internationalized domains.
|
|
9237
9237
|
* * This matches against the request initiator and not the request url.
|
|
9238
|
+
* * Sub-domains of the listed domains are also matched.
|
|
9238
9239
|
*
|
|
9239
9240
|
* @since Chrome 101
|
|
9240
9241
|
*/
|
|
9241
9242
|
initiatorDomains?: string[];
|
|
9242
9243
|
|
|
9243
9244
|
/**
|
|
9244
|
-
* The rule will not match network requests originating from the list of `
|
|
9245
|
+
* The rule will not match network requests originating from the list of `excludedInitiatorDomains`. If the list is empty or omitted, no domains are excluded. This takes precedence over `initiatorDomains`.
|
|
9245
9246
|
*
|
|
9246
9247
|
* Notes:
|
|
9247
9248
|
*
|
|
@@ -9249,6 +9250,7 @@ declare namespace chrome {
|
|
|
9249
9250
|
* * The entries must consist of only ascii characters.
|
|
9250
9251
|
* * Use punycode encoding for internationalized domains.
|
|
9251
9252
|
* * This matches against the request initiator and not the request url.
|
|
9253
|
+
* * Sub-domains of the listed domains are also excluded.
|
|
9252
9254
|
*
|
|
9253
9255
|
* @since Chrome 101
|
|
9254
9256
|
*/
|
|
@@ -9262,19 +9264,21 @@ declare namespace chrome {
|
|
|
9262
9264
|
* * Sub-domains like "a.example.com" are also allowed.
|
|
9263
9265
|
* * The entries must consist of only ascii characters.
|
|
9264
9266
|
* * Use punycode encoding for internationalized domains.
|
|
9267
|
+
* * Sub-domains of the listed domains are also matched.
|
|
9265
9268
|
*
|
|
9266
9269
|
* @since Chrome 101
|
|
9267
9270
|
*/
|
|
9268
9271
|
requestDomains?: string[];
|
|
9269
9272
|
|
|
9270
9273
|
/**
|
|
9271
|
-
* The rule will not match network requests when the domains matches one from the list of `
|
|
9274
|
+
* The rule will not match network requests when the domains matches one from the list of `excludedRequestDomains`. If the list is empty or omitted, no domains are excluded. This takes precedence over `requestDomains`.
|
|
9272
9275
|
*
|
|
9273
9276
|
* Notes:
|
|
9274
9277
|
*
|
|
9275
9278
|
* * Sub-domains like "a.example.com" are also allowed.
|
|
9276
9279
|
* * The entries must consist of only ascii characters.
|
|
9277
9280
|
* * Use punycode encoding for internationalized domains.
|
|
9281
|
+
* * Sub-domains of the listed domains are also excluded.
|
|
9278
9282
|
*
|
|
9279
9283
|
* @since Chrome 101
|
|
9280
9284
|
*/
|
|
@@ -13725,79 +13729,6 @@ declare namespace chrome {
|
|
|
13725
13729
|
id: string,
|
|
13726
13730
|
details: FileHandlerExecuteEventDetails,
|
|
13727
13731
|
) => void>;
|
|
13728
|
-
|
|
13729
|
-
/**
|
|
13730
|
-
* 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.
|
|
13731
|
-
*
|
|
13732
|
-
* @chrome-returns-extra since Chrome 96
|
|
13733
|
-
* @param selectionParams Parameters that will be used while selecting the file.
|
|
13734
|
-
*/
|
|
13735
|
-
export function selectFile(
|
|
13736
|
-
|
|
13737
|
-
selectionParams: {
|
|
13738
|
-
|
|
13739
|
-
/**
|
|
13740
|
-
* Suggested name for the file.
|
|
13741
|
-
*/
|
|
13742
|
-
suggestedName: string,
|
|
13743
|
-
|
|
13744
|
-
/**
|
|
13745
|
-
* List of file extensions that the selected file can have. The list is also used to specify what files to be shown in the select file dialog. Files with the listed extensions are only shown in the dialog. Extensions should not include the leading '.'. Example: \['jpg', 'png'\]
|
|
13746
|
-
*/
|
|
13747
|
-
allowedFileExtensions?: string[],
|
|
13748
|
-
},
|
|
13749
|
-
): Promise<{
|
|
13750
|
-
|
|
13751
|
-
/**
|
|
13752
|
-
* Whether the file has been selected.
|
|
13753
|
-
*/
|
|
13754
|
-
success: boolean,
|
|
13755
|
-
|
|
13756
|
-
/**
|
|
13757
|
-
* Selected file entry. It will be null if a file hasn't been selected.
|
|
13758
|
-
*/
|
|
13759
|
-
entry?: {[name: string]: any},
|
|
13760
|
-
}>;
|
|
13761
|
-
|
|
13762
|
-
/**
|
|
13763
|
-
* 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.
|
|
13764
|
-
*
|
|
13765
|
-
* @param selectionParams Parameters that will be used while selecting the file.
|
|
13766
|
-
* @param callback Function called upon completion.
|
|
13767
|
-
*/
|
|
13768
|
-
export function selectFile(
|
|
13769
|
-
|
|
13770
|
-
selectionParams: {
|
|
13771
|
-
|
|
13772
|
-
/**
|
|
13773
|
-
* Suggested name for the file.
|
|
13774
|
-
*/
|
|
13775
|
-
suggestedName: string,
|
|
13776
|
-
|
|
13777
|
-
/**
|
|
13778
|
-
* List of file extensions that the selected file can have. The list is also used to specify what files to be shown in the select file dialog. Files with the listed extensions are only shown in the dialog. Extensions should not include the leading '.'. Example: \['jpg', 'png'\]
|
|
13779
|
-
*/
|
|
13780
|
-
allowedFileExtensions?: string[],
|
|
13781
|
-
},
|
|
13782
|
-
|
|
13783
|
-
/**
|
|
13784
|
-
* @param result Result of the method.
|
|
13785
|
-
*/
|
|
13786
|
-
callback?: (
|
|
13787
|
-
result: {
|
|
13788
|
-
|
|
13789
|
-
/**
|
|
13790
|
-
* Whether the file has been selected.
|
|
13791
|
-
*/
|
|
13792
|
-
success: boolean,
|
|
13793
|
-
|
|
13794
|
-
/**
|
|
13795
|
-
* Selected file entry. It will be null if a file hasn't been selected.
|
|
13796
|
-
*/
|
|
13797
|
-
entry?: {[name: string]: any},
|
|
13798
|
-
},
|
|
13799
|
-
) => void,
|
|
13800
|
-
): void;
|
|
13801
13732
|
}
|
|
13802
13733
|
|
|
13803
13734
|
/**
|
|
@@ -15922,7 +15853,7 @@ declare namespace chrome {
|
|
|
15922
15853
|
destinationId: string,
|
|
15923
15854
|
|
|
15924
15855
|
/**
|
|
15925
|
-
* The ID of the message. It must be unique for each message in scope of the applications. See the [Cloud Messaging documentation](https://
|
|
15856
|
+
* The ID of the message. It must be unique for each message in scope of the applications. See the [Cloud Messaging documentation](https://firebase.google.com/docs/cloud-messaging/js/client) for advice for picking and handling an ID.
|
|
15926
15857
|
*/
|
|
15927
15858
|
messageId: string,
|
|
15928
15859
|
|
|
@@ -16736,9 +16667,27 @@ declare namespace chrome {
|
|
|
16736
16667
|
*
|
|
16737
16668
|
* Since some auth flows may immediately redirect to a result URL, `launchWebAuthFlow` hides its web view until the first navigation either redirects to the final URL, or finishes loading a page meant to be displayed.
|
|
16738
16669
|
*
|
|
16739
|
-
* If the interactive flag is `true`, the window will be displayed when a page load completes. If the flag is `false` or omitted, `launchWebAuthFlow` will return with an error if the initial navigation does not complete the flow.
|
|
16670
|
+
* If the `interactive` flag is `true`, the window will be displayed when a page load completes. If the flag is `false` or omitted, `launchWebAuthFlow` will return with an error if the initial navigation does not complete the flow.
|
|
16671
|
+
*
|
|
16672
|
+
* For flows that use JavaScript for redirection, `abortOnLoadForNonInteractive` can be set to `false` in combination with setting `timeoutMsForNonInteractive` to give the page a chance to perform any redirects.
|
|
16740
16673
|
*/
|
|
16741
16674
|
interactive?: boolean;
|
|
16675
|
+
|
|
16676
|
+
/**
|
|
16677
|
+
* Whether to terminate `launchWebAuthFlow` for non-interactive requests after the page loads. This parameter does not affect interactive flows.
|
|
16678
|
+
*
|
|
16679
|
+
* When set to `true` (default) the flow will terminate immediately after the page loads. When set to `false`, the flow will only terminate after the `timeoutMsForNonInteractive` passes. This is useful for identity providers that use JavaScript to perform redirections after the page loads.
|
|
16680
|
+
*
|
|
16681
|
+
* @since Pending
|
|
16682
|
+
*/
|
|
16683
|
+
abortOnLoadForNonInteractive?: boolean;
|
|
16684
|
+
|
|
16685
|
+
/**
|
|
16686
|
+
* The maximum amount of time, in miliseconds, `launchWebAuthFlow` is allowed to run in non-interactive mode in total. Only has an effect if `interactive` is `false`.
|
|
16687
|
+
*
|
|
16688
|
+
* @since Pending
|
|
16689
|
+
*/
|
|
16690
|
+
timeoutMsForNonInteractive?: number;
|
|
16742
16691
|
}
|
|
16743
16692
|
|
|
16744
16693
|
/**
|
|
@@ -27591,7 +27540,7 @@ declare namespace chrome {
|
|
|
27591
27540
|
/**
|
|
27592
27541
|
* The maximum amount (in bytes) of data that can be stored in memory, as measured by estimating the dynamically allocated memory usage of every value and key. Updates that would cause this limit to be exceeded fail immediately and set {@link runtime.lastError}.
|
|
27593
27542
|
*/
|
|
27594
|
-
QUOTA_BYTES:
|
|
27543
|
+
QUOTA_BYTES: 10485760,
|
|
27595
27544
|
};
|
|
27596
27545
|
|
|
27597
27546
|
/**
|
|
@@ -34319,7 +34268,7 @@ declare namespace chrome {
|
|
|
34319
34268
|
/**
|
|
34320
34269
|
* @since Chrome 44
|
|
34321
34270
|
*/
|
|
34322
|
-
export type ResourceType = "main_frame" | "sub_frame" | "stylesheet" | "script" | "image" | "font" | "object" | "xmlhttprequest" | "ping" | "csp_report" | "media" | "websocket" | "other";
|
|
34271
|
+
export type ResourceType = "main_frame" | "sub_frame" | "stylesheet" | "script" | "image" | "font" | "object" | "xmlhttprequest" | "ping" | "csp_report" | "media" | "websocket" | "webbundle" | "other";
|
|
34323
34272
|
|
|
34324
34273
|
/**
|
|
34325
34274
|
* @since Chrome 44
|
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 Fri Mar 03 2023 22:29:36 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 939564227c747ae6dc4a9e09fd31747150e96841
|
|
19
19
|
|
|
20
20
|
// Includes MV3+ APIs only.
|
|
21
21
|
|
|
@@ -5832,7 +5832,7 @@ declare namespace chrome {
|
|
|
5832
5832
|
*
|
|
5833
5833
|
* @since Chrome 91
|
|
5834
5834
|
*/
|
|
5835
|
-
export type RequestMethod = "connect" | "delete" | "get" | "head" | "options" | "patch" | "post" | "put";
|
|
5835
|
+
export type RequestMethod = "connect" | "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "other";
|
|
5836
5836
|
|
|
5837
5837
|
/**
|
|
5838
5838
|
* This describes whether the request is first or third party to the frame in which it originated. A request is said to be first party if it has the same domain (eTLD+1) as the frame in which the request originated.
|
|
@@ -6037,13 +6037,14 @@ declare namespace chrome {
|
|
|
6037
6037
|
* * The entries must consist of only ascii characters.
|
|
6038
6038
|
* * Use punycode encoding for internationalized domains.
|
|
6039
6039
|
* * This matches against the request initiator and not the request url.
|
|
6040
|
+
* * Sub-domains of the listed domains are also matched.
|
|
6040
6041
|
*
|
|
6041
6042
|
* @since Chrome 101
|
|
6042
6043
|
*/
|
|
6043
6044
|
initiatorDomains?: string[];
|
|
6044
6045
|
|
|
6045
6046
|
/**
|
|
6046
|
-
* The rule will not match network requests originating from the list of `
|
|
6047
|
+
* The rule will not match network requests originating from the list of `excludedInitiatorDomains`. If the list is empty or omitted, no domains are excluded. This takes precedence over `initiatorDomains`.
|
|
6047
6048
|
*
|
|
6048
6049
|
* Notes:
|
|
6049
6050
|
*
|
|
@@ -6051,6 +6052,7 @@ declare namespace chrome {
|
|
|
6051
6052
|
* * The entries must consist of only ascii characters.
|
|
6052
6053
|
* * Use punycode encoding for internationalized domains.
|
|
6053
6054
|
* * This matches against the request initiator and not the request url.
|
|
6055
|
+
* * Sub-domains of the listed domains are also excluded.
|
|
6054
6056
|
*
|
|
6055
6057
|
* @since Chrome 101
|
|
6056
6058
|
*/
|
|
@@ -6064,19 +6066,21 @@ declare namespace chrome {
|
|
|
6064
6066
|
* * Sub-domains like "a.example.com" are also allowed.
|
|
6065
6067
|
* * The entries must consist of only ascii characters.
|
|
6066
6068
|
* * Use punycode encoding for internationalized domains.
|
|
6069
|
+
* * Sub-domains of the listed domains are also matched.
|
|
6067
6070
|
*
|
|
6068
6071
|
* @since Chrome 101
|
|
6069
6072
|
*/
|
|
6070
6073
|
requestDomains?: string[];
|
|
6071
6074
|
|
|
6072
6075
|
/**
|
|
6073
|
-
* The rule will not match network requests when the domains matches one from the list of `
|
|
6076
|
+
* The rule will not match network requests when the domains matches one from the list of `excludedRequestDomains`. If the list is empty or omitted, no domains are excluded. This takes precedence over `requestDomains`.
|
|
6074
6077
|
*
|
|
6075
6078
|
* Notes:
|
|
6076
6079
|
*
|
|
6077
6080
|
* * Sub-domains like "a.example.com" are also allowed.
|
|
6078
6081
|
* * The entries must consist of only ascii characters.
|
|
6079
6082
|
* * Use punycode encoding for internationalized domains.
|
|
6083
|
+
* * Sub-domains of the listed domains are also excluded.
|
|
6080
6084
|
*
|
|
6081
6085
|
* @since Chrome 101
|
|
6082
6086
|
*/
|
|
@@ -9777,79 +9781,6 @@ declare namespace chrome {
|
|
|
9777
9781
|
id: string,
|
|
9778
9782
|
details: FileHandlerExecuteEventDetails,
|
|
9779
9783
|
) => void>;
|
|
9780
|
-
|
|
9781
|
-
/**
|
|
9782
|
-
* 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.
|
|
9783
|
-
*
|
|
9784
|
-
* @chrome-returns-extra since Chrome 96
|
|
9785
|
-
* @param selectionParams Parameters that will be used while selecting the file.
|
|
9786
|
-
*/
|
|
9787
|
-
export function selectFile(
|
|
9788
|
-
|
|
9789
|
-
selectionParams: {
|
|
9790
|
-
|
|
9791
|
-
/**
|
|
9792
|
-
* Suggested name for the file.
|
|
9793
|
-
*/
|
|
9794
|
-
suggestedName: string,
|
|
9795
|
-
|
|
9796
|
-
/**
|
|
9797
|
-
* List of file extensions that the selected file can have. The list is also used to specify what files to be shown in the select file dialog. Files with the listed extensions are only shown in the dialog. Extensions should not include the leading '.'. Example: \['jpg', 'png'\]
|
|
9798
|
-
*/
|
|
9799
|
-
allowedFileExtensions?: string[],
|
|
9800
|
-
},
|
|
9801
|
-
): Promise<{
|
|
9802
|
-
|
|
9803
|
-
/**
|
|
9804
|
-
* Whether the file has been selected.
|
|
9805
|
-
*/
|
|
9806
|
-
success: boolean,
|
|
9807
|
-
|
|
9808
|
-
/**
|
|
9809
|
-
* Selected file entry. It will be null if a file hasn't been selected.
|
|
9810
|
-
*/
|
|
9811
|
-
entry?: {[name: string]: any},
|
|
9812
|
-
}>;
|
|
9813
|
-
|
|
9814
|
-
/**
|
|
9815
|
-
* 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.
|
|
9816
|
-
*
|
|
9817
|
-
* @param selectionParams Parameters that will be used while selecting the file.
|
|
9818
|
-
* @param callback Function called upon completion.
|
|
9819
|
-
*/
|
|
9820
|
-
export function selectFile(
|
|
9821
|
-
|
|
9822
|
-
selectionParams: {
|
|
9823
|
-
|
|
9824
|
-
/**
|
|
9825
|
-
* Suggested name for the file.
|
|
9826
|
-
*/
|
|
9827
|
-
suggestedName: string,
|
|
9828
|
-
|
|
9829
|
-
/**
|
|
9830
|
-
* List of file extensions that the selected file can have. The list is also used to specify what files to be shown in the select file dialog. Files with the listed extensions are only shown in the dialog. Extensions should not include the leading '.'. Example: \['jpg', 'png'\]
|
|
9831
|
-
*/
|
|
9832
|
-
allowedFileExtensions?: string[],
|
|
9833
|
-
},
|
|
9834
|
-
|
|
9835
|
-
/**
|
|
9836
|
-
* @param result Result of the method.
|
|
9837
|
-
*/
|
|
9838
|
-
callback?: (
|
|
9839
|
-
result: {
|
|
9840
|
-
|
|
9841
|
-
/**
|
|
9842
|
-
* Whether the file has been selected.
|
|
9843
|
-
*/
|
|
9844
|
-
success: boolean,
|
|
9845
|
-
|
|
9846
|
-
/**
|
|
9847
|
-
* Selected file entry. It will be null if a file hasn't been selected.
|
|
9848
|
-
*/
|
|
9849
|
-
entry?: {[name: string]: any},
|
|
9850
|
-
},
|
|
9851
|
-
) => void,
|
|
9852
|
-
): void;
|
|
9853
9784
|
}
|
|
9854
9785
|
|
|
9855
9786
|
/**
|
|
@@ -11749,7 +11680,7 @@ declare namespace chrome {
|
|
|
11749
11680
|
destinationId: string,
|
|
11750
11681
|
|
|
11751
11682
|
/**
|
|
11752
|
-
* The ID of the message. It must be unique for each message in scope of the applications. See the [Cloud Messaging documentation](https://
|
|
11683
|
+
* The ID of the message. It must be unique for each message in scope of the applications. See the [Cloud Messaging documentation](https://firebase.google.com/docs/cloud-messaging/js/client) for advice for picking and handling an ID.
|
|
11753
11684
|
*/
|
|
11754
11685
|
messageId: string,
|
|
11755
11686
|
|
|
@@ -12297,9 +12228,27 @@ declare namespace chrome {
|
|
|
12297
12228
|
*
|
|
12298
12229
|
* Since some auth flows may immediately redirect to a result URL, `launchWebAuthFlow` hides its web view until the first navigation either redirects to the final URL, or finishes loading a page meant to be displayed.
|
|
12299
12230
|
*
|
|
12300
|
-
* If the interactive flag is `true`, the window will be displayed when a page load completes. If the flag is `false` or omitted, `launchWebAuthFlow` will return with an error if the initial navigation does not complete the flow.
|
|
12231
|
+
* If the `interactive` flag is `true`, the window will be displayed when a page load completes. If the flag is `false` or omitted, `launchWebAuthFlow` will return with an error if the initial navigation does not complete the flow.
|
|
12232
|
+
*
|
|
12233
|
+
* For flows that use JavaScript for redirection, `abortOnLoadForNonInteractive` can be set to `false` in combination with setting `timeoutMsForNonInteractive` to give the page a chance to perform any redirects.
|
|
12301
12234
|
*/
|
|
12302
12235
|
interactive?: boolean;
|
|
12236
|
+
|
|
12237
|
+
/**
|
|
12238
|
+
* Whether to terminate `launchWebAuthFlow` for non-interactive requests after the page loads. This parameter does not affect interactive flows.
|
|
12239
|
+
*
|
|
12240
|
+
* When set to `true` (default) the flow will terminate immediately after the page loads. When set to `false`, the flow will only terminate after the `timeoutMsForNonInteractive` passes. This is useful for identity providers that use JavaScript to perform redirections after the page loads.
|
|
12241
|
+
*
|
|
12242
|
+
* @since Pending
|
|
12243
|
+
*/
|
|
12244
|
+
abortOnLoadForNonInteractive?: boolean;
|
|
12245
|
+
|
|
12246
|
+
/**
|
|
12247
|
+
* The maximum amount of time, in miliseconds, `launchWebAuthFlow` is allowed to run in non-interactive mode in total. Only has an effect if `interactive` is `false`.
|
|
12248
|
+
*
|
|
12249
|
+
* @since Pending
|
|
12250
|
+
*/
|
|
12251
|
+
timeoutMsForNonInteractive?: number;
|
|
12303
12252
|
}
|
|
12304
12253
|
|
|
12305
12254
|
/**
|
|
@@ -21412,7 +21361,7 @@ declare namespace chrome {
|
|
|
21412
21361
|
/**
|
|
21413
21362
|
* The maximum amount (in bytes) of data that can be stored in memory, as measured by estimating the dynamically allocated memory usage of every value and key. Updates that would cause this limit to be exceeded fail immediately and set {@link runtime.lastError}.
|
|
21414
21363
|
*/
|
|
21415
|
-
QUOTA_BYTES:
|
|
21364
|
+
QUOTA_BYTES: 10485760,
|
|
21416
21365
|
};
|
|
21417
21366
|
|
|
21418
21367
|
/**
|
|
@@ -27570,7 +27519,7 @@ declare namespace chrome {
|
|
|
27570
27519
|
/**
|
|
27571
27520
|
* @since Chrome 44
|
|
27572
27521
|
*/
|
|
27573
|
-
export type ResourceType = "main_frame" | "sub_frame" | "stylesheet" | "script" | "image" | "font" | "object" | "xmlhttprequest" | "ping" | "csp_report" | "media" | "websocket" | "other";
|
|
27522
|
+
export type ResourceType = "main_frame" | "sub_frame" | "stylesheet" | "script" | "image" | "font" | "object" | "xmlhttprequest" | "ping" | "csp_report" | "media" | "websocket" | "webbundle" | "other";
|
|
27574
27523
|
|
|
27575
27524
|
/**
|
|
27576
27525
|
* @since Chrome 44
|
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": "e603fe2e582fd41e"
|
|
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.176"
|
|
20
20
|
}
|