-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
32 lines (32 loc) · 803 Bytes
/
popup.html
File metadata and controls
32 lines (32 loc) · 803 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>LinkedIn Suggested Hider</title>
<style>
body {
width: 200px;
padding: 10px;
font-family: Arial, sans-serif;
}
h1 {
font-size: 16px;
text-align: center;
}
.privacy {
font-size: 12px;
color: #666;
margin-top: 20px;
border-top: 1px solid #eee;
padding-top: 10px;
}
</style>
</head>
<body>
<h1>LinkedIn Suggested Hider</h1>
<p>Suggested posts are automatically hidden.</p>
<div class="privacy">
<strong>Privacy Policy:</strong>
This extension does not collect, store, or share any user data. It operates entirely within your browser.
</div>
</body>
</html>