28 lines
1,004 B
JavaScript
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");
|