Test them scripts, boi
As of
// ==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);
})();