Last active
February 21, 2022 21:42
-
-
Save nickloewen/73192bee3370948d6b55a4a0b51b8729 to your computer and use it in GitHub Desktop.
This file contains 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
// ==UserScript== | |
// @name Worldle – Change Date | |
// @author n loewen | |
// @description Edit the "fakeDate" in this file to change the Worldle puzzle | |
// @match https://*.worldle.teuteuf.fr/* | |
// @version 2022-02-21.1 | |
// ==/UserScript== | |
const fakeDate = new Date('February 20, 2022 20:17:40 GMT+00:00'); | |
Date.now = function() { return fakeDate.getTime(); }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment