Files
SocialMedia-Cleanup-Tool/popup.html
T

85 lines
1.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>FB Activity Cleaner</title>
<style>
body {
font-family: system-ui, -apple-system, sans-serif;
width: 300px;
margin: 0;
padding: 14px;
color: #1c1e21;
background: #fff;
}
h1 {
font-size: 15px;
margin: 0 0 6px;
}
p {
font-size: 12px;
line-height: 1.4;
color: #65676b;
margin: 0 0 12px;
}
.actions {
display: flex;
flex-direction: column;
gap: 8px;
margin-bottom: 12px;
}
button {
width: 100%;
border: 0;
border-radius: 8px;
padding: 11px 12px;
font-size: 13px;
font-weight: 650;
cursor: pointer;
}
#start {
background: #2563eb;
color: #fff;
}
#start:hover { background: #1d4ed8; }
#stop {
background: #e4e6eb;
color: #050505;
}
#status {
font-size: 12px;
background: #f0f2f5;
border-radius: 8px;
padding: 8px 10px;
margin-bottom: 10px;
min-height: 18px;
}
ol {
font-size: 12px;
margin: 0;
padding-left: 18px;
}
li { margin-bottom: 5px; }
</style>
</head>
<body>
<h1>FB Activity Cleaner</h1>
<p>Open Activity Log manage mode, then start deletion here or on the page panel.</p>
<div class="actions">
<button id="start" type="button">Start deletion</button>
<button id="stop" type="button">Stop</button>
</div>
<div id="status">Ready</div>
<ol>
<li>Open Comments or Posts Activity Log</li>
<li>Make sure checkboxes (manage mode) are visible</li>
<li>Click <strong>Start deletion</strong></li>
</ol>
<script src="popup.js"></script>
</body>
</html>