add popup settings test
This commit is contained in:
parent
584fba13ed
commit
c816540ca0
1 changed files with 12 additions and 0 deletions
|
@ -11,7 +11,19 @@
|
||||||
// ==/UserScript==
|
// ==/UserScript==
|
||||||
|
|
||||||
(function() {
|
(function() {
|
||||||
|
let settings_HTML = `
|
||||||
|
<link href="https://swee.codes/style.css" rel="stylesheet" type="text/css">
|
||||||
|
<title>Builder settings</title>
|
||||||
|
<br>
|
||||||
|
<center>
|
||||||
|
<h1><img src="https://git.swee.codes/swee/Builded/raw/branch/main/Builded-full.svg"> Settings</h1>
|
||||||
|
`
|
||||||
|
function settings() {
|
||||||
|
let win = window.open("about:blank", "ree", `title=yes`);
|
||||||
|
win.document.body.insertAdjacentHTML('afterbegin', settings_HTML);
|
||||||
|
}
|
||||||
'use strict';
|
'use strict';
|
||||||
// Your code here...
|
// Your code here...
|
||||||
|
settings();
|
||||||
console.info("Builded Loaded <3")
|
console.info("Builded Loaded <3")
|
||||||
})();
|
})();
|
||||||
|
|
Loading…
Reference in a new issue