Guest User

Untitled

a guest
Dec 16th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. function close(){
  2. var gettingAll = browser.windows.getAll({
  3. populate: true,
  4. windowTypes: ["normal"]
  5. });
  6. gettingAll.then((windows) => {
  7. for (var item of windows) {
  8. browser.windows.remove(item.id);
  9. }
  10. });
  11. }
  12.  
  13. function restartSession {
  14. close();
  15. browser.windows.create().then(function (currentWindow) {
  16. browser.sessions.restore();
  17. });
  18. }
Add Comment
Please, Sign In to add comment