JS Script for solving wordle
- Add the bookmarklet.
- Click the bookmarklet to load script.
- Click button in bottom right corner to get a word suggested to you.
Drag and drop the following link to your bookmarks bar. Wordle Bot
If you would like to create your own Bookmarklet, you can use the following javascript.
javascript: (async () => {
if (document.getElementById("wordle-bot-script")) {
return;
}
const script = document.createElement("script");
script.src = "https://krieger351.github.io/wordle-bot/bundle.js";
script.id = "wordle-bot-script";
document.body.append(script);
})();
- Checkout Repository
npm install
- generate ssl keys
npm start
- Add local bookmarklet to browser
javascript: (async () => {
if (document.getElementById("wordle-bot-script")) {
return;
}
const script = document.createElement("script");
script.src = "https://localhost:8080/bundle.js";
script.id = "wordle-bot-script";
document.body.append(script);
})();