Files
BetterSEQTA-Plus/public/backgrounds/background.html
T
SethBurkart123 e12e1afd4c working firefox
2023-11-17 07:10:10 +11:00

33 lines
577 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Background Fetcher</title>
<style>
body {
margin: 0 !important;
}
video, img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
</style>
<script type="application/javascript" src="/browser-polyfill.js"></script>
</head>
<body>
<!-- Container for the media -->
<div id="media-container">
<!-- Will be populated dynamically -->
</div>
<script src="background.js"></script>
</body>
</html>