QxQ
QxQ

Reputation: 675

chrome extensions: how do I make a tab navigate backwards in history

I am using chrome and am making an extension. I would like to know if it is possible to make a tab navigate backwards (like pushing the back button). if so, how do I do it.

Upvotes: 1

Views: 618

Answers (1)

cheeken
cheeken

Reputation: 34655

Use this history object.

window.history.go(-1);

Upvotes: 1

Related Questions