Builded/builded.user.js
swee 081c72cf39
Some checks are pending
Check syntax / check (push) Waiting to run
Update builded.user.js
2025-01-03 22:23:18 -08:00

28 lines
1,004 B
JavaScript

/*jshint esversion: 6 */
// ==UserScript==
// @name Builded
// @namespace https://git.swee.codes/swee/Builded
// @version 0.0.1.2
// @description Vencord, but for Guilded
// @author Swee
// @match https://*.guilded.gg/*
// @match https://builded.swee.codes/settings
// @icon https://git.swee.codes/swee/Builded/raw/branch/main/Builded-solid.svg
// @grant GM_setValue
// @grant GM_getValue
// @require https://code.jquery.com/jquery-3.7.1.min.js
// @run-at document-end
// ==/UserScript==]
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`);
}
if (location.host == "www.guilded.gg") {
console.info("Guilded.GG detected.");
} else {
document.body.innerHTML += settings_HTML;
}
console.info("Builded Loaded <3");