Testing outside scripts

Test them scripts, boi

Від 16.06.2025. Дивіться остання версія.

// ==UserScript==
// @name            Testing outside scripts
// @description     Test them scripts, boi
// @version         1.0.0
// @author          Oliver P
// @namespace       https://github.com/OlisDevSpot
// @license         MIT
// @match           https://www.google.com/
// @run-at          document-end
// @compatible      safari
// ==/UserScript==

(function () {
    const script = document.createElement('script');
    script.src = 'https://greasy-monkey-snippets.pages.dev/main.js';
    script.type = 'text/javascript';
    document.head.appendChild(script);
})();