Hide Worldle paywall (without triggering the trap)
worldledaily.com by weirdalex03
Details
Authorweirdalex03
LicenseCC0
Categoryworldle
Created
Updated
Size450 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Worldle (worldledaily.app) will block you from playing some days unless you pay. But "block you from playing" is actually just an annoying popup on top of an otherwise totally functional game. So, just open Inspect Element and hide the paywall!
Not so fast! That actually triggers a trap which also clears the game itself, leaving you with nothing. But, it's still possible to totally hide the paywall without triggering the trap with a few CSS rules, which is what I've done here.
Source code
/* ==UserStyle==
@name worldledaily.com
@version 20220502.18.05
@namespace userstyles.world/user/weirdalex03
@description Hide Worldle paywall (without triggering the trap)
@author weirdalex03
@license No License
==/UserStyle== */
@-moz-document domain("worldledaily.com") {
.userSystemModal.planSelector {
max-width: 0;
position: revert;
}
.planSelector > .contentWrap {
display: none;
}
}