You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** The ID of the request. Request IDs are unique within a browser session. As a result, they could be used to relate different events of the same request. */
4671
+
requestId: string;
4672
+
/** The value 0 indicates that the request happens in the main frame; a positive value indicates the ID of a subframe in which the request happens. If the document of a (sub-)frame is loaded (type is main_frame or sub_frame), frameId indicates the ID of this frame, not the ID of the outer frame. Frame IDs are unique within a tab. */
4673
+
frameId: number;
4674
+
/** ID of frame that wraps the frame which sent the request. Set to -1 if no parent frame exists. */
4675
+
parentFrameId: number;
4676
+
/** The ID of the tab in which the request takes place. Set to -1 if the request isn't related to a tab. */
4677
+
tabId: number;
4678
+
/**
4679
+
* How the requested resource will be used.
4680
+
* One of: "main_frame", "sub_frame", "stylesheet", "script", "image", "object", "xmlhttprequest", or "other"
4681
+
*/
4682
+
type: string;
4683
+
/** The time when this signal is triggered, in milliseconds since the epoch. */
0 commit comments