Files
hDM/browser-extension/popup/popup.html
2026-05-04 01:19:04 +03:00

54 lines
1.2 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Download Manager</title>
<style>
body {
width: 250px;
padding: 15px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f3f3f3;
}
.header {
display: flex;
align-items: center;
margin-bottom: 15px;
}
.header img {
width: 32px;
height: 32px;
margin-right: 10px;
}
.header h1 {
font-size: 16px;
margin: 0;
color: #333;
}
.status {
font-size: 13px;
color: #666;
margin-bottom: 10px;
}
.footer {
border-top: 1px solid #ddd;
padding-top: 10px;
font-size: 11px;
color: #888;
text-align: center;
}
</style>
</head>
<body>
<div class="header">
<h1>Download Manager</h1>
</div>
<div class="status">
Uzantı aktif. İndirmeler otomatik olarak ana uygulamaya yönlendirilir.
</div>
<div class="footer">
© 2026 hDM Project
</div>
</body>
</html>