Wordle Hack

If you really want to cheat at Wordle, this will tell you the answer -_-

  1. // ==UserScript==
  2. // @name Wordle Hack
  3. // @version 4.0
  4. // @description If you really want to cheat at Wordle, this will tell you the answer -_-
  5. // @author Logzilla6
  6. // @match https://www.nytimes.com/games/wordle/*
  7. // @icon https://www.google.com/s2/favicons?domain=powerlanguage.co.uk
  8. // @grant none
  9. // @namespace https://gf.qytechs.cn/users/783447
  10. // ==/UserScript==
  11.  
  12. if (confirm("Would you like the answer to the Wordle?") == true) {
  13.  
  14. var currentDate = new Date().toISOString().slice(0, 10);
  15. console.log(currentDate);
  16.  
  17. let dataUrl = 'https://www.nytimes.com/svc/wordle/v2/'+currentDate+'.json';
  18.  
  19. fetch(dataUrl)
  20. .then(res => res.json())
  21. .then(gameData => alert(gameData.solution))
  22. }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址