Block online_current.js

Blocks the online_current.js script from loading

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

Advertisement:

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

Advertisement:

// ==UserScript==
// @name         Block online_current.js
// @namespace    https://instructure-uploads.s3.amazonaws.com/
// @version      1.0
// @description  Blocks the online_current.js script from loading
// @match        *://*.instructure.com/*
// @match        *://instructure-uploads.s3.amazonaws.com/*
// @run-at       document-start
// @grant        none
// ==/UserScript==

(function() {
    var observer = new MutationObserver(function(mutations, observer) {
        var scripts = document.querySelectorAll("script[src*='online_current.js']");
        scripts.forEach(script => {
            script.remove(); // Remove the script if found
            console.log("Blocked: " + script.src);
        });
    });

    observer.observe(document, { childList: true, subtree: true });

    // Prevent the script from being added dynamically
    const originalCreateElement = document.createElement;
    document.createElement = function(tagName, options) {
        if (tagName.toLowerCase() === 'script') {
            const scriptElement = originalCreateElement.apply(this, arguments);
            Object.defineProperty(scriptElement, 'src', {
                set: function(value) {
                    if (value.includes('online_current.js')) {
                        console.log("Blocked script injection: " + value);
                        return;
                    }
                    scriptElement.setAttribute('src', value);
                },
                get: function() {
                    return scriptElement.getAttribute('src');
                }
            });
            return scriptElement;
        }
        return originalCreateElement.apply(this, arguments);
    };
})();