Builded/builded.user.js

29 lines
1,004 B
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:23:18 -08:00
// @require https://code.jquery.com/jquery-3.7.1.min.js
2024-11-16 14:01:23 -08:00
// @run-at document-end
2024-12-18 15:19:43 -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.");
} else {
document.body.innerHTML += settings_HTML;
}
console.info("Builded Loaded <3");