fix ur screen
// ==UserScript==
// @name Screen Fix Full Screen
// @namespace http://tampermonkey.net/
// @version 2026-02-26
// @description fix ur screen
// @author sphere
// @match https://www.jscreenfix.com/fix.html
// @icon https://www.google.com/s2/favicons?sz=64&domain=jscreenfix.com
// @grant none
// @license MIT
// ==/UserScript==
(function() {
const c=document.getElementById("canvas");
c.width=1555;
c.height=1555;
c.style.width="1555px";
c.style.height="1555px";
})();