2022-08-29 19:11:44 +03:00
|
|
|
document.addEventListener("DOMContentLoaded", async () => {
|
|
|
|
const style = document.createElement("style");
|
|
|
|
document.head.appendChild(style);
|
|
|
|
VencordNative.handleQuickCssUpdate((css: string) => style.innerText = css);
|
|
|
|
style.innerText = await VencordNative.getQuickCss();
|
2022-08-30 02:42:47 +03:00
|
|
|
});
|