mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-03-21 12:07:13 +00:00
fullscreen behaviour improvement, PiP improvement, subtitle handling, multi-track support for player and parser, PWA work
34 lines
No EOL
1 KiB
HTML
34 lines
No EOL
1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<link rel="manifest" href="manifest.json">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
|
<meta name="apple-mobile-web-app-title" content="Miru">
|
|
<meta name="description" content="Way too high quality anime for streaming, ad free in a simple solution.">
|
|
<meta name="theme-color" content="#25282c" />
|
|
|
|
<link rel="icon" href="logo.png">
|
|
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="apple-touch-icon" href="logo.png">
|
|
<script>
|
|
if ('serviceWorker' in navigator) {
|
|
window.addEventListener('load', () => {
|
|
navigator.serviceWorker.register('/sw.js')
|
|
.then((reg) => {
|
|
console.log('Service worker registered.', reg);
|
|
});
|
|
});
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
test
|
|
</body>
|
|
|
|
</html> |