All Downloads are FREE. Search and download functionalities are using the official Maven repository.

chrome.webNavigation.bindings.OnCompletedDetails.scala Maven / Gradle / Ivy

package chrome.webNavigation.bindings

import scala.scalajs.js
import scala.scalajs.js._

@js.native
trait OnCompletedDetails extends js.Object {
  /**
    * The ID of the tab in which the navigation occurs.
    */
  val tabId: Int = native
  val url: String = native
  /**
    * The ID of the process that runs the renderer for this frame.
    *
    * Missing in firefox https://bugzilla.mozilla.org/show_bug.cgi?id=1248426
    */
  val processId: js.UndefOr[Int] = native
  /**
    * 0 indicates the navigation happens in the tab content window; a positive value indicates navigation in a subframe.
    * Frame IDs are unique within a tab.
    */
  val frameId: Int = native
  /**
    * The time when the document finished loading, in milliseconds since the epoch.
    */
  val timeStamp: Double = native
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy