Wordle Solver

Gives You the Wordle Answer

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Wordle Solver
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Gives You the Wordle Answer
// @author       Nick
// @match        https://www.nytimes.com/games/wordle/*
// @icon         https://www.nytimes.com/games-assets/v2/assets/wordle/page-icons/wordle-icon.svg
// @grant        none
// @license      MIT
// ==/UserScript==

let date = new Date()
let day = (date.getMonth()+1)
if(day.toString().length < 2) {
    day = "0"+day
}
let date_wordle = date.getYear()+1900+"-"+day+"-"+date.getDate()
fetch("https://www.nytimes.com/svc/wordle/v2/"+date_wordle+".json").then((data)=>{
    data.json().then((json)=>{
        alert("The Wordle Answer is: '"+json.solution+"'")
    })
})