Skip to content

Instantly share code, notes, and snippets.

@nickloewen
Last active February 21, 2022 21:42
Show Gist options
  • Save nickloewen/73192bee3370948d6b55a4a0b51b8729 to your computer and use it in GitHub Desktop.
Save nickloewen/73192bee3370948d6b55a4a0b51b8729 to your computer and use it in GitHub Desktop.
// ==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