File size: 7,381 Bytes
ea5d04f |
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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Multi RSS Streams</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body, html {
height: 100%;
font-family: 'Roboto', sans-serif;
color: #ffffff;
}
body {
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
url('/backdrop.jpg') no-repeat center center fixed;
background-size: cover;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
min-height: 100%;
padding: 20px;
}
.logo {
font-size: 3rem;
font-weight: 700;
color: #e50914;
margin-bottom: 2rem;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.content-wrapper {
background-color: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(10px);
border-radius: 4px;
padding: 40px;
width: 100%;
max-width: 450px;
height: fit-content;
border: 1px solid rgba(255, 255, 255, 0.1);
}
h1 {
font-size: 2rem;
font-weight: 700;
margin-bottom: 28px;
text-align: center;
}
.input-container {
position: relative;
margin-bottom: 16px;
}
.input {
width: 100%;
height: 50px;
background-color: rgba(51, 51, 51, 0.8);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 4px;
color: white;
padding: 16px 20px 0;
font-size: 1rem;
outline: none;
}
.input:focus {
background-color: rgba(69, 69, 69, 0.8);
border-color: rgba(255, 255, 255, 0.3);
}
.input-label {
position: absolute;
top: 50%;
left: 20px;
transform: translateY(-50%);
transition: all 0.1s ease;
color: #8c8c8c;
pointer-events: none;
}
.input:focus + .input-label,
.input:not(:placeholder-shown) + .input-label {
top: 7px;
font-size: 0.7rem;
}
.btn {
width: 100%;
height: 50px;
background-color: #e50914;
color: white;
border: none;
border-radius: 4px;
font-size: 1rem;
font-weight: 700;
margin: 24px 0 12px;
cursor: pointer;
transition: background-color 0.2s;
}
.btn:hover {
background-color: #f40612;
}
.info {
color: #737373;
font-size: 0.9rem;
margin-top: 16px;
background-color: rgba(0, 0, 0, 0.6);
padding: 20px;
border-radius: 4px;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.addon-url {
width: 100%;
background-color: rgba(51, 51, 51, 0.8);
color: white;
border: 1px solid rgba(255, 255, 255, 0.1);
padding: 10px;
margin-top: 10px;
border-radius: 4px;
word-break: break-all;
display: none;
}
.buttons-container {
display: flex;
gap: 10px;
margin-top: 10px;
}
.action-btn {
background-color: #e50914;
color: white;
border: none;
padding: 10px 20px;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.2s;
flex: 1;
font-weight: 700;
}
.action-btn:hover {
background-color: #f40612;
}
</style>
</head>
<body>
<div class="container">
<div class="logo">Multi RSS</div>
<div class="content-wrapper">
<h1>Stremio Addon Installation</h1>
<div class="input-container">
<input type="text" id="dl-key" class="input" placeholder=" " required>
<label for="dl-key" class="input-label">DebridLink API Key</label>
</div>
<div class="input-container">
<input type="text" id="pr-key" class="input" placeholder=" ">
<label for="pr-key" class="input-label">Premiumize API Key</label>
</div>
<button class="btn" onclick="generateAddonUrl()">GENERATE</button>
<div id="addon-url" class="addon-url"></div>
<div class="info">
<h3>How to get API Keys:</h3>
<p><strong>DebridLink:</strong> Visit <a href="https://debrid-link.com/webapp/apikey" target="_blank">https://debrid-link.com/webapp/apikey</a></p>
<p><strong>Premiumize:</strong> Visit <a href="https://www.premiumize.me/account" target="_blank">https://www.premiumize.me/account</a></p>
</div>
</div>
</div>
<script>
function generateAddonUrl() {
const dlKey = document.getElementById('dl-key').value.trim();
const prKey = document.getElementById('pr-key').value.trim();
if (!dlKey && !prKey) {
alert('Please enter at least one API key');
return;
}
// Get the base URL components
const protocol = window.location.protocol;
const hostname = window.location.host;
const baseUrl = `${protocol}//${hostname}`;
// Generate the keys part of the URL
let keys = [];
if (dlKey) keys.push(`dl=${dlKey}`);
if (prKey) keys.push(`pr=${prKey}`);
// Create the addon URL
const addonUrl = `${baseUrl}/${keys.join(',')}/manifest.json`;
// Always use stremio:// protocol for the Stremio URL, regardless of original protocol
const stremioUrl = `stremio://${hostname}/${keys.join(',')}/manifest.json`;
const urlDiv = document.getElementById('addon-url');
urlDiv.style.display = 'block';
urlDiv.innerHTML = `
<p>Your addon URL:</p>
<p>${addonUrl}</p>
<div class="buttons-container">
<button onclick="window.location.href='${stremioUrl}'" class="action-btn">Install in Stremio</button>
<button onclick="copyToClipboard('${addonUrl}')" class="action-btn">Copy URL</button>
</div>
`;
}
function copyToClipboard(text) {
navigator.clipboard.writeText(text).then(() => {
alert('URL copied to clipboard!');
}).catch(err => {
console.error('Failed to copy text: ', err);
alert('Failed to copy URL. Please copy it manually.');
});
}
</script>
</body>
</html>
|