mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 03:34:40 +00:00
8 lines
188 B
TypeScript
8 lines
188 B
TypeScript
import Browser from "webextension-polyfill";
|
|
|
|
(async () => {
|
|
const result = await Browser.storage.local.get();
|
|
if (result.DarkMode) {
|
|
document.body.classList.add('dark');
|
|
}
|
|
})(); |