Created
February 3, 2022 15:43
-
-
Save mimonelu/fe02efa19dda1deb46c41d390853dbde to your computer and use it in GitHub Desktop.
Wordle Save Bookmarklet
This file contains hidden or 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
javascript: (() => { const a = document.createElement('a'); a.download = 'wordle.txt'; a.href = URL.createObjectURL(new Blob([ localStorage.statistics ], { type: 'text/plain' })); a.target = '_blank'; a.click(); })(); void 0; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
WordleのStatisticsを保存・復元するブックマークレットです。