![JAR search and dependency download from the Maven repository](/logo.png)
chrome.webNavigation.WebNavigation.scala Maven / Gradle / Ivy
package chrome.webNavigation
import chrome.ChromeAPI
import chrome.events.EventSource
import chrome.events.EventSourceImplicits._
import chrome.permissions.Permission.API
import chrome.utils.ErrorHandling.lastErrorOrValue
import chrome.webNavigation.bindings._
import scala.concurrent.{Future, Promise}
import scala.scalajs.js
/**
* @see chrome.webNavigation API
*/
object WebNavigation extends ChromeAPI {
override val requiredPermissions: Set[API] = Set(API.WebNavigation)
/**
* Fired when a navigation is about to occur.
*/
val onBeforeNavigate: EventSource[OnBeforeNavigateDetails] = bindings.WebNavigation.onBeforeNavigate
/**
* Fired when a navigation is committed. The document (and the resources it refers to, such as images and subframes)
* might still be downloading, but at least part of the document has been received from the server and the browser
* has decided to switch to the new document.
*/
val onCommitted: EventSource[OnCommittedDetails] = bindings.WebNavigation.onCommitted
/**
* Fired when the page's DOM is fully constructed, but the referenced resources may not finish loading.
*/
val onDOMContentLoaded: EventSource[OnDOMContentLoadedDetails] = bindings.WebNavigation.onDOMContentLoaded
/**
* Fired when a document, including the resources it refers to, is completely loaded and initialized.
*/
val onCompleted: EventSource[OnCompletedDetails] = bindings.WebNavigation.onCompleted
/**
* Fired when an error occurs and the navigation is aborted. This can happen if either a network error occurred, or
* the user aborted the navigation.
*/
val onErrorOccurred: EventSource[OnErrorOccurredDetails] = bindings.WebNavigation.onErrorOccurred
/**
* Fired when a new window, or a new tab in an existing window, is created to host a navigation.
*/
val onCreatedNavigationTarget: EventSource[OnCreatedNavigationTargetDetails] =
bindings.WebNavigation.onCreatedNavigationTarget
/**
* Fired when the reference fragment of a frame was updated.
* All future events for that frame will use the updated URL.
*/
val onReferenceFragmentUpdated: EventSource[OnCommittedDetails] = bindings.WebNavigation.onReferenceFragmentUpdated
/**
* Fired when the contents of the tab is replaced by a different (usually previously pre-rendered) tab.
*/
val onTabReplaced: EventSource[OnTabReplacedDetails] = bindings.WebNavigation.onTabReplaced
/**
* Fired when the frame's history was updated to a new URL.
* All future events for that frame will use the updated URL.
*/
val onHistoryStateUpdated: EventSource[OnCommittedDetails] = bindings.WebNavigation.onHistoryStateUpdated
/**
* Retrieves information about the given frame. A frame refers to an
© 2015 - 2025 Weber Informatics LLC | Privacy Policy