CRK FIX

Replaces now.gg/crkfix with the old CRK

// ==UserScript==
// @name         CRK FIX
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Replaces now.gg/crkfix with the old CRK
// @author       Felix
// @match        https://now.gg/crkfix*
// @grant        none
// ==/UserScript==
(function() {
    'use strict';

    var replacementHTML = `
        <html>
        <head>
            <title>Fixed CRK.</title>
        </head>
        <body>
<iframe loading="lazy" class="video-iframe" src="https://now.gg/iframe/snippet?app_pkg=com.devsisters.ck&amp;partner=nowgg" width="100%" height="650" frameborder="0" allowfullscreen="allowfullscreen"></iframe>
        </body>
        </html>
    `;

    document.documentElement.innerHTML = replacementHTML;
})();