Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. // code courtesy of Toby team
  2.  
  3. chrome.storage.local.get("state", o => (
  4. ((f, t) => {
  5. let e = document.createElement("a");
  6. e.setAttribute("href", `data:text/plain;charset=utf-8,${encodeURIComponent(t)}`);
  7. e.setAttribute("download", f);
  8. e.click();
  9. })(`TobyBackup${Date.now()}.json`, o.state)
  10. ));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement