26 lines
911 B
JavaScript
26 lines
911 B
JavaScript
|
|
// ==UserScript==
|
|
// @name Builded
|
|
// @namespace https://git.swee.codes/swee/Builded
|
|
// @version 1.0.1
|
|
// @description Vencord, but for Guilded
|
|
// @author Swee
|
|
// @match https://*.guilded.gg https://builded.swee.codes/settings
|
|
// @icon https://git.swee.codes/swee/Builded/raw/branch/main/Builded-solid.svg
|
|
// @grant GM_setValue
|
|
// @grant GM_getValue
|
|
// ==/UserScript==
|
|
|
|
(function() {
|
|
let settings_HTML = `
|
|
<p>If you see this text, the userscript successfully rendered the settings page.</p>
|
|
`
|
|
function settings() {
|
|
let win = window.open("https://builded.swee.codes/settings", "ree", `titlebar=yes,menubar=no,height=500px,width=300px,menubar=no,status=no`);
|
|
win.document.body.insertAdjacentHTML('afterbegin', settings_HTML);
|
|
}
|
|
'use strict';
|
|
// Your code here...
|
|
settings();
|
|
console.info("Builded Loaded <3")
|
|
})();
|