pokerpatio iframe blocker

blocks iframe opening, just redirects to lobby

// ==UserScript==
// @name         pokerpatio iframe blocker
// @namespace    http://tampermonkey.net/
// @version      2024-08-28
// @description  blocks iframe opening, just redirects to lobby
// @author       king
// @match        https://pokerpatio.com/lobbies
// @icon         https://i.ibb.co/7W9DNdD/code-1-512.png
// @run-at document-end
// @grant        none
// ==/UserScript==

/* global createWindowedIframe:writable */
(function() {
    'use strict';

    createWindowedIframe = (d)=>{window.location=d.url};
})();