chrome-types 0.1.79 → 0.1.80
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 +9 -2
- package/index.d.ts +9 -2
- 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 Wed Jan 05 2022 22:28:25 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 60c8b84b630f57cf62e3da6009aedfd0f35b90f0
|
|
19
19
|
|
|
20
20
|
// Includes all types, including MV2 + Platform Apps APIs.
|
|
21
21
|
|
|
@@ -7301,6 +7301,13 @@ declare namespace chrome {
|
|
|
7301
7301
|
*/
|
|
7302
7302
|
all_frames?: boolean;
|
|
7303
7303
|
|
|
7304
|
+
/**
|
|
7305
|
+
* Whether the script should inject into any frames where the URL belongs to a scheme that would never match a specified Match Pattern, including about:, data:, blob:, and filesystem: schemes. In these cases, in order to determine if the script should inject, the origin of the URL is checked. If the origin is `null` (as is the case for data: URLs), then the "initiator" or "creator" origin is used (i.e., the origin of the frame that created or navigated this frame). Note that this may not be the parent frame, if the frame was navigated by another frame in the document hierarchy.
|
|
7306
|
+
*
|
|
7307
|
+
* @since Pending
|
|
7308
|
+
*/
|
|
7309
|
+
match_origin_as_fallback?: boolean;
|
|
7310
|
+
|
|
7304
7311
|
/**
|
|
7305
7312
|
* Whether the script should inject into an about:blank frame where the parent or opener frame matches one of the patterns declared in matches. Defaults to false.
|
|
7306
7313
|
*/
|
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 Wed Jan 05 2022 22:28:21 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 60c8b84b630f57cf62e3da6009aedfd0f35b90f0
|
|
19
19
|
|
|
20
20
|
// Includes MV3+ APIs only.
|
|
21
21
|
|
|
@@ -3868,6 +3868,13 @@ declare namespace chrome {
|
|
|
3868
3868
|
*/
|
|
3869
3869
|
all_frames?: boolean;
|
|
3870
3870
|
|
|
3871
|
+
/**
|
|
3872
|
+
* Whether the script should inject into any frames where the URL belongs to a scheme that would never match a specified Match Pattern, including about:, data:, blob:, and filesystem: schemes. In these cases, in order to determine if the script should inject, the origin of the URL is checked. If the origin is `null` (as is the case for data: URLs), then the "initiator" or "creator" origin is used (i.e., the origin of the frame that created or navigated this frame). Note that this may not be the parent frame, if the frame was navigated by another frame in the document hierarchy.
|
|
3873
|
+
*
|
|
3874
|
+
* @since Pending
|
|
3875
|
+
*/
|
|
3876
|
+
match_origin_as_fallback?: boolean;
|
|
3877
|
+
|
|
3871
3878
|
/**
|
|
3872
3879
|
* Whether the script should inject into an about:blank frame where the parent or opener frame matches one of the patterns declared in matches. Defaults to false.
|
|
3873
3880
|
*/
|
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": "d7a76cef828e4762"
|
|
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.80"
|
|
20
20
|
}
|