Navigation snippets

Navigation snippets move the current tab through its history.

Move through browser history


Go back one page, equivalent to the Back step but available in JavaScript:

window.history.back();

Go back a specific number of pages. The argument is a negative number for backward navigation, positive for forward:

window.history.go(-2);