only God can help us now

This commit is contained in:
Crazypersonalph
2023-12-04 13:06:59 +08:00
parent 528baa8bc1
commit ab60048f22
21 changed files with 73 additions and 138 deletions
+15
View File
@@ -0,0 +1,15 @@
import browser from 'webextension-polyfill'
export async function appendBackgroundToUI() {
console.log('Starting appendBackgroundToUI...');
const parent = document.getElementById('container');
// embed background.html
const background = document.createElement('iframe');
background.id = 'background';
background.classList.add('imageBackground');
background.setAttribute('excludeDarkCheck', 'true');
background.src = browser.runtime.getURL('backgrounds/background.html');
parent.appendChild(background);
}