Builded/builded.user.js

27 lines
912 B
JavaScript
Raw Normal View History

2024-11-14 20:59:43 -08:00
// ==UserScript==
// @name Builded
// @namespace https://git.swee.codes/swee/Builded
2024-11-14 21:14:49 -08:00
// @version 1.0.1
2024-11-14 20:59:43 -08:00
// @description Vencord, but for Guilded
// @author Swee
2024-11-16 13:50:44 -08:00
// @match https://*.guilded.gg, https://builded.swee.codes/settings
2024-11-14 21:02:25 -08:00
// @icon https://git.swee.codes/swee/Builded/raw/branch/main/Builded-solid.svg
2024-11-14 22:00:49 -08:00
// @grant GM_setValue
// @grant GM_getValue
2024-11-14 20:59:43 -08:00
// ==/UserScript==
(function() {
2024-11-14 21:48:37 -08:00
let settings_HTML = `
2024-11-16 13:50:44 -08:00
<p>If you see this text, the userscript successfully rendered the settings page.</p>
2024-11-14 21:48:37 -08:00
`
function settings() {
2024-11-16 13:50:44 -08:00
let win = window.open("https://builded.swee.codes/settings", "ree", `titlebar=yes,menubar=no,height=500px,width=300px,menubar=no,status=no`);
2024-11-14 21:48:37 -08:00
win.document.body.insertAdjacentHTML('afterbegin', settings_HTML);
}
2024-11-14 20:59:43 -08:00
'use strict';
// Your code here...
2024-11-14 21:48:37 -08:00
settings();
2024-11-14 21:14:49 -08:00
console.info("Builded Loaded <3")
2024-11-14 20:59:43 -08:00
})();