mirror of
https://github.com/bytedream/stream-bypass.git
synced 2025-05-09 20:25:14 +02:00
17 lines
396 B
HTML
17 lines
396 B
HTML
<!doctype html>
|
|
<html style="width: fit-content; height: 500px; overflow-y: hidden" lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Stream Bypass</title>
|
|
</head>
|
|
<body style="width: fit-content; height: 500px; overflow-y: scroll">
|
|
<script type="module">
|
|
import Popup from '~/entries/popup/Popup.svelte';
|
|
|
|
new Popup({
|
|
target: document.body
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|