-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.txt
More file actions
61 lines (51 loc) · 1.52 KB
/
index.txt
File metadata and controls
61 lines (51 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<style>
body {
background: #111;
color: white;
font-family: sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}
a {
color: #f39c12;
text-decoration: none;
font-size: 2em;
border: 2px solid #f39c12;
padding: 10px 20px;
border-radius: 5px;
transition: all 0.3s;
}
a:hover {
background: #f39c12;
color: #111;
}
h1 {
margin-bottom: 20px;
}
.link-text {
margin-top: 10px;
color: #aaa;
}
</style>
</head>
<body>
<h1>MalluFlix Addon</h1>
<p>Stremio addon for Malayalam movie catalogs.</p>
<a id="installLink" href="#">Install on Stremio</a>
<p class="link-text"><small>Or copy this link: <span id="manifestLink">Loading...</span></small></p>
<script>
// Dynamically generate the manifest URL based on the current location
const manifestUrl = window.location.protocol + "//" + window.location.host + "/manifest.json";
const installUrl = "stremio://" + window.location.host + "/manifest.json";
document.getElementById("installLink").href = installUrl;
document.getElementById("manifestLink").innerText = manifestUrl;
</script>
</body>
</html>