to display wordle in lowercase
If you have the ublock plugin:
https://github.com/aelipsi/WordleLowerCase/blob/main/WordleLowerCase.txt
Otherwise, if your browser lets you set a custom stylesheet*, the following works for making the letters in the top game section lowercase:
This works for making the letters in the bottom keyboard lowercase:
*If using Firefox, you can create a "userContent.css" file with the above content.
Then navigate to your Firefox profile folder. If it doesn't already has a "chrome" subfolder, create that folder.
Place the userContent.css file in the "chrome" folder.
Then open the about:config page and bring up the "toolkit.legacyUserProfileCustomizations.stylesheets" setting. If it is false, change it to true.
Close and re-open the browser.
https://github.com/aelipsi/WordleLowerCase/blob/main/WordleLowerCase.txt
Otherwise, if your browser lets you set a custom stylesheet*, the following works for making the letters in the top game section lowercase:
div[class^="Tile-module_tile__"] { text-transform: lowercase !important; }
This works for making the letters in the bottom keyboard lowercase:
button[class^="Key-module_key__"] { text-transform: lowercase !important; }
*If using Firefox, you can create a "userContent.css" file with the above content.
Then navigate to your Firefox profile folder. If it doesn't already has a "chrome" subfolder, create that folder.
Place the userContent.css file in the "chrome" folder.
Then open the about:config page and bring up the "toolkit.legacyUserProfileCustomizations.stylesheets" setting. If it is false, change it to true.
Close and re-open the browser.