Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name FixPuzzleFrame
- // @namespace http://tampermonkey.net/
- // @version 2024-03-25
- // @description Fix puzzle frame
- // @author anon
- // @match https://signup.live.com/*
- // @icon https://www.google.com/s2/favicons?sz=64&domain=live.com
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- const observerFrame = new MutationObserver(checkFrame);
- function checkFrame()
- {
- const frame = document.getElementById("enforcementFrame");
- if (frame)
- {
- frame.style.height = "1000px";
- frame.style.width = "1000px";
- }
- }
- observerFrame.observe(document.body, { childList: true, subtree: true });
- })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement