Trick splitwise.com into thinking it's tomorrow, letting you expense as many items as you want.
CTRL + I
Go to console
Read and understand this code
Paste and hit enter
You're done
const OriginalDate = Date;
const offsetMs = 24 * 60 * 60 * 1000; // 1 day in milliseconds
window.Date = class extends OriginalDate {
constructor(...args) {
if (args.length === 0) {
return new OriginalDate(Date.now() + offsetMs);
}
return new OriginalDate(...args);
}
static now() {
return OriginalDate.now() + offsetMs;
}
};
if you're going to make a paywall, make it take longer than 30 seconds to break. I don't even feel bad about this