Skip to content

Instantly share code, notes, and snippets.

@nexpid
Last active February 4, 2025 09:47
Show Gist options
  • Save nexpid/81c8a8fe16c6f705e405f7e6a535ac1e to your computer and use it in GitHub Desktop.
Save nexpid/81c8a8fe16c6f705e405f7e6a535ac1e to your computer and use it in GitHub Desktop.
ushiefix
// ==UserScript==
// @name ushie.dev fixer
// @description Fixes ushie.dev fuck you
// @namespace https://gist.github.com/nexpid/81c8a8fe16c6f705e405f7e6a535ac1e
// @updateURL https://gist.github.com/nexpid/81c8a8fe16c6f705e405f7e6a535ac1e/raw/ushiefix.user.js
// @author nexpid
// @match *://ushie.dev/*
// @icon https://api.lanyard.rest/399862294143696897.png
// @grant GM_addStyle
// @version 1.3.2
// ==/UserScript==
(function () {
"use strict";
GM_addStyle(
`.html {
height: 100vh;
height: -webkit-fill-available;
}
body {
min-height: 100vh;
min-height: -webkit-fill-available;
}`
);
})();
@Rico040
Copy link

Rico040 commented Aug 6, 2024

@icon is invalid now

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment