You've already forked AstralRinth
forked from didirus/AstralRinth
76 lines
1.7 KiB
HTML
76 lines
1.7 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Modrinth App Ad</title>
|
|
<script
|
|
type="module"
|
|
src="//js.rev.iq"
|
|
async
|
|
data-domain="modrinth.com"
|
|
></script>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.ads-container {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
#plus-link {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 0;
|
|
}
|
|
|
|
#modrinth-rail-1 {
|
|
border-radius: 1rem;
|
|
position: absolute;
|
|
left: 0;
|
|
bottom: 0;
|
|
z-index: 2;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="ads-container">
|
|
<a id="plus-link" href="https://modrinth.com/plus" target="_blank"></a>
|
|
<div id="project-rail" />
|
|
</div>
|
|
<script>
|
|
window.addEventListener(
|
|
"message",
|
|
(event) => {
|
|
if (event.data.modrinthOpenUrl && window.__TAURI_INTERNALS__) {
|
|
window.__TAURI_INTERNALS__.invoke("plugin:shell|open", {
|
|
path: event.data.modrinthOpenUrl,
|
|
});
|
|
}
|
|
},
|
|
false,
|
|
);
|
|
|
|
window.addEventListener("mousewheel", (event) => {
|
|
if (window.__TAURI_INTERNALS__) {
|
|
window.__TAURI_INTERNALS__.invoke("plugin:ads|scroll_ads_window", {
|
|
scroll: event.deltaY,
|
|
});
|
|
}
|
|
});
|
|
|
|
document.addEventListener("contextmenu", (event) => event.preventDefault());
|
|
</script>
|
|
</body>
|
|
</html>
|