mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2025-12-10 05:27:03 +03:00
21 lines
569 B
TypeScript
21 lines
569 B
TypeScript
import { localizeHtmlPage } from "@ajayyy/maze-utils/lib/setup";
|
|
import Config from "./config";
|
|
import { showDonationLink } from "./utils/configUtils";
|
|
|
|
import { waitFor } from "@ajayyy/maze-utils";
|
|
|
|
window.addEventListener('DOMContentLoaded', init);
|
|
|
|
async function init() {
|
|
localizeHtmlPage();
|
|
|
|
await waitFor(() => Config.config !== null);
|
|
|
|
if (!Config.config.darkMode) {
|
|
document.documentElement.setAttribute("data-theme", "light");
|
|
}
|
|
|
|
if (!showDonationLink()) {
|
|
document.getElementById("sbDonate").style.display = "none";
|
|
}
|
|
} |