diff --git a/builded.user.js b/builded.user.js index 3ae6fbd..7ad2794 100644 --- a/builded.user.js +++ b/builded.user.js @@ -11,7 +11,19 @@ // ==/UserScript== (function() { + let settings_HTML = ` + +Builder settings +
+
+

Settings

+` + function settings() { + let win = window.open("about:blank", "ree", `title=yes`); + win.document.body.insertAdjacentHTML('afterbegin', settings_HTML); + } 'use strict'; // Your code here... + settings(); console.info("Builded Loaded <3") })();