Builded/builded.user.js
swee 6c7d94f9c4
Some checks are pending
Check syntax / check (push) Waiting to run
Update builded.user.js
2025-01-03 22:43:45 -08:00

35 lines
1.3 KiB
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
// @require https://github.com/pie6k/jquery.initialize/raw/refs/heads/master/jquery.initialize.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.");
$.initialize('select', function() {
console.info($(this))
if ($(this).classList.contains("DesktopOptionsControl-persistent-menu")) {
console.info("Settings opened!")
}
});
} else {
document.body.innerHTML += settings_HTML;
}
console.info("Builded Loaded <3");