forked from Woyken/pixelplanet.fun-OverlayPicture
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 943 Bytes
/
index.html
File metadata and controls
23 lines (23 loc) · 943 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
<head>
<title>Placeholder website</title>
</head>
<body>
<p>
Open
<a href="https://woyken.github.io/pixelplanet.fun-OverlayPicture/pixelPlanetOverlay-loader.user.js "
>https://woyken.github.io/pixelplanet.fun-OverlayPicture/pixelPlanetOverlay-loader.user.js</a
>
to install Ovelay picture for PixelPlanet.fun
</p>
<script type="module" src="/src/userscript-loader-module/init.ts"></script>
<script>
setTimeout(() => {
if (location.host.startsWith("localhost"))
window.location.href = new URL('src/userscript-loader-module/pixelPlanetOverlay-loader-dev.user.ts', location.href).href;
else
window.location.href = new URL('pixelPlanetOverlay-loader.user.js', location.href).href;
}, 500);
</script>
</body>
</html>