Builded/builded.user.js

34 lines
1.2 KiB
JavaScript
Raw Normal View History

2024-12-18 15:18:02 -08:00
/*jshint esversion: 6 */
2024-11-14 20:59:43 -08:00
// ==UserScript==
// @name Builded
// @namespace https://git.swee.codes/swee/Builded
2024-11-29 16:13:06 -08:00
// @version 0.0.1.2
2024-11-14 20:59:43 -08:00
// @description Vencord, but for Guilded
// @author Swee
2024-11-29 16:13:06 -08:00
// @match https://*.guilded.gg/*
2024-11-16 13:53:41 -08:00
// @match 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
2025-01-03 22:25:33 -08:00
// @require https://code.jquery.com/jquery-3.7.1.min.js
2025-01-03 22:35:07 -08:00
// @require https://github.com/pie6k/jquery.initialize/raw/refs/heads/master/jquery.initialize.min.js
2025-01-03 22:25:33 -08:00
// @run-at document-end
2025-01-03 22:24:52 -08:00
// ==/UserScript==
2024-11-14 20:59:43 -08:00
2024-12-18 15:19:43 -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-12-18 15:19:43 -08:00
`;
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.");
2025-01-03 22:47:14 -08:00
$.initialize('.OptionsMenu-options-control', function() {
2025-01-03 22:46:05 -08:00
console.info("Settings opened!")
2025-01-03 22:43:45 -08:00
console.info($(this))
2025-01-03 22:39:59 -08:00
});
2024-12-18 15:19:43 -08:00
} else {
document.body.innerHTML += settings_HTML;
}
console.info("Builded Loaded <3");