![JAR search and dependency download from the Maven repository](/logo.png)
chrome.webNavigation.bindings.OnCreatedNavigationTargetDetails.scala Maven / Gradle / Ivy
package chrome.webNavigation.bindings
import scala.scalajs.js
import scala.scalajs.js._
@js.native
trait OnCreatedNavigationTargetDetails extends js.Object {
/**
* The ID of the tab in which the navigation is triggered.
*/
val sourceTabId: Int = native
/**
* The ID of the process that runs the renderer for the source frame.
*
* Missing in firefox https://bugzilla.mozilla.org/show_bug.cgi?id=1248426
*/
val sourceProcessId: js.UndefOr[Int] = native
/**
* The ID of the frame with sourceTabId in which the navigation is triggered. 0 indicates the main frame.
*/
val sourceFrameId: Int = native
/**
* The URL to be opened in the new window.
*/
val url: String = native
/**
* The ID of the tab in which the url is opened.
*/
val tabId: Int = native
/**
* The time when the browser was about to create a new view, in milliseconds since the epoch.
*/
val timeStamp: Double = native
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy