Skip to content

Instantly share code, notes, and snippets.

@mimonelu
Created February 3, 2022 15:44
Show Gist options
  • Save mimonelu/5679e4c13a0533a3894440b17c96b74f to your computer and use it in GitHub Desktop.
Save mimonelu/5679e4c13a0533a3894440b17c96b74f to your computer and use it in GitHub Desktop.
Wordle Load Bookmarklet
javascript: (() => { const json = prompt('wordle.txt の中身を入力してください。', ''); if (json !== '') { localStorage.setItem('statistics', json); location.reload(); } })(); void 0;
@mimonelu
Copy link
Author

mimonelu commented Feb 3, 2022

WordleのStatisticsを保存・復元するブックマークレットです。

  1. Wordle のページで wordle-save.js をブックマークレットとして実行してください。
  2. wordle.txt がダウンロードされます。
  3. (WordleのStatisticsが消えてしまったら)Wordleのページで wordle-load.js をブックマークレットとして実行してください。
  4. ダイアログボックスに wordle.txt の内容をコピペしてください。
  5. ページがリロードされ、元のデータが修復されている、はずです。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment