Copy extensions from extras project to main

This commit is contained in:
SillyLossy
2023-03-16 00:33:26 +02:00
parent 2cda80ffe4
commit 165cad1549
24 changed files with 1423 additions and 198 deletions

View File

@ -2163,7 +2163,7 @@ async function getSettings(type) {
const src = "scripts/extensions.js";
if ($(`script[src="${src}"]`).length === 0) {
const script = document.createElement("script");
script.type = "text/javascript";
script.type = "module";
script.src = src;
$("body").append(script);
}