I\'m creating a chrome packaged app, and I need to navigate my htmls without creating a lot of windows, like, if the user click one button, it opens the html in the same window
The page you want to navigate to can be opened in a new window, then the previous page can be closed.
function navigateToLink (link) { var current = chrome.app.window.current(); chrome.app.window.create(link); current.close(); }