143 lines
2.8 KiB
HTML
143 lines
2.8 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Facebook Post Tracker</title>
|
|
<style>
|
|
body {
|
|
width: 300px;
|
|
padding: 20px;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
|
margin: 0;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 18px;
|
|
margin: 0 0 16px 0;
|
|
color: #050505;
|
|
}
|
|
|
|
.section {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
margin-bottom: 8px;
|
|
color: #050505;
|
|
}
|
|
|
|
.toggle-label {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin-bottom: 8px;
|
|
font-weight: 600;
|
|
color: #050505;
|
|
}
|
|
|
|
.toggle-label input {
|
|
margin: 0;
|
|
width: 18px;
|
|
height: 18px;
|
|
}
|
|
|
|
select {
|
|
width: 100%;
|
|
padding: 8px;
|
|
border: 1px solid #ccd0d5;
|
|
border-radius: 6px;
|
|
font-size: 14px;
|
|
background: white;
|
|
}
|
|
|
|
.status {
|
|
padding: 12px;
|
|
background: #f0f2f5;
|
|
border-radius: 8px;
|
|
font-size: 14px;
|
|
color: #65676b;
|
|
}
|
|
|
|
.status.saved {
|
|
background: #d1fae5;
|
|
color: #065f46;
|
|
}
|
|
|
|
.btn-group {
|
|
display: flex;
|
|
gap: 8px;
|
|
margin-top: 12px;
|
|
}
|
|
|
|
button {
|
|
flex: 1;
|
|
padding: 10px;
|
|
background: #1877f2;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 6px;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: background 0.2s;
|
|
}
|
|
|
|
button:hover {
|
|
background: #166fe5;
|
|
}
|
|
|
|
button.secondary {
|
|
background: #e4e6eb;
|
|
color: #050505;
|
|
}
|
|
|
|
button.secondary:hover {
|
|
background: #d8dadf;
|
|
}
|
|
|
|
.info {
|
|
font-size: 12px;
|
|
color: #65676b;
|
|
margin-top: 8px;
|
|
line-height: 1.4;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>📋 Facebook Post Tracker</h1>
|
|
|
|
<div class="section">
|
|
<label for="profileSelect">Aktuelles Profil:</label>
|
|
<select id="profileSelect">
|
|
<option value="1">Profil 1</option>
|
|
<option value="2">Profil 2</option>
|
|
<option value="3">Profil 3</option>
|
|
<option value="4">Profil 4</option>
|
|
<option value="5">Profil 5</option>
|
|
</select>
|
|
<div class="info">Wähle das Browser-Profil aus, mit dem du aktuell arbeitest.</div>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<label class="toggle-label">
|
|
<input type="checkbox" id="debugLoggingToggle">
|
|
<span>Debug-Logging aktivieren</span>
|
|
</label>
|
|
<div class="info">Schaltet ausführliche Konsolen-Ausgaben im Content Script ein.</div>
|
|
</div>
|
|
|
|
<div id="status" class="status"></div>
|
|
|
|
<div class="btn-group">
|
|
<button id="saveBtn">Speichern</button>
|
|
<button id="webInterfaceBtn" class="secondary">Web-Interface</button>
|
|
</div>
|
|
|
|
<script src="config.js"></script>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|