-
-
Save atifraza/44ef93b7067c0a9d832b0c8e1bbaba55 to your computer and use it in GitHub Desktop.
Export data from Toby - Open developer tools and execute in the console
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// code courtesy of Toby team | |
chrome.storage.local.get("state", o => ( | |
((f, t) => { | |
let e = document.createElement("a"); | |
e.setAttribute("href", `data:text/plain;charset=utf-8,${encodeURIComponent(t)}`); | |
e.setAttribute("download", f); | |
e.click(); | |
})(`TobyBackup${Date.now()}.json`, o.state) | |
)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment