devtools-protocol 0.0.1441344 → 0.0.1441961
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.
@@ -24629,6 +24629,13 @@
|
|
24629
24629
|
"experimental": true,
|
24630
24630
|
"optional": true,
|
24631
24631
|
"type": "boolean"
|
24632
|
+
},
|
24633
|
+
{
|
24634
|
+
"name": "hidden",
|
24635
|
+
"description": "Whether to create a hidden target. The hidden target is observable via protocol, but not\npresent in the tab UI strip. Cannot be created with `forTab: true`, `newWindow: true` or\n`background: false`. The life-time of the tab is limited to the life-time of the session.",
|
24636
|
+
"experimental": true,
|
24637
|
+
"optional": true,
|
24638
|
+
"type": "boolean"
|
24632
24639
|
}
|
24633
24640
|
],
|
24634
24641
|
"returns": [
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -11591,6 +11591,10 @@ domain Target
|
|
11591
11591
|
optional boolean background
|
11592
11592
|
# Whether to create the target of type "tab".
|
11593
11593
|
experimental optional boolean forTab
|
11594
|
+
# Whether to create a hidden target. The hidden target is observable via protocol, but not
|
11595
|
+
# present in the tab UI strip. Cannot be created with `forTab: true`, `newWindow: true` or
|
11596
|
+
# `background: false`. The life-time of the tab is limited to the life-time of the session.
|
11597
|
+
experimental optional boolean hidden
|
11594
11598
|
returns
|
11595
11599
|
# The id of the page opened.
|
11596
11600
|
TargetID targetId
|
package/types/protocol.d.ts
CHANGED
@@ -17622,6 +17622,12 @@ export namespace Protocol {
|
|
17622
17622
|
* Whether to create the target of type "tab".
|
17623
17623
|
*/
|
17624
17624
|
forTab?: boolean;
|
17625
|
+
/**
|
17626
|
+
* Whether to create a hidden target. The hidden target is observable via protocol, but not
|
17627
|
+
* present in the tab UI strip. Cannot be created with `forTab: true`, `newWindow: true` or
|
17628
|
+
* `background: false`. The life-time of the tab is limited to the life-time of the session.
|
17629
|
+
*/
|
17630
|
+
hidden?: boolean;
|
17625
17631
|
}
|
17626
17632
|
|
17627
17633
|
export interface CreateTargetResponse {
|