-
Notifications
You must be signed in to change notification settings - Fork 7
/
popup.html
33 lines (26 loc) · 1.08 KB
/
popup.html
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
33
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="bulma-css/bulma.min.css" type="text/css">
<link rel="stylesheet" href="bulma-css/bulma-switch.min.css" type="text/css">
<link href="popup.css" rel="stylesheet" type="text/css">
</head>
<body>
<br>
<div class="columns is-mobile" >
<div class="column is-11 is-offset-2" >
<h4 class="title is-4">Feed Blocker</h4>
<div class="field">
<input id="lk-checkbox-feed" type="checkbox" name="lk-checkbox-feed" class="switch is-rounded" checked="checked">
<label for="lk-checkbox-feed">Hide feed</label>
<input id="lk-checkbox-news" type="checkbox" name="lk-checkbox-news" class="switch is-rounded" checked="checked">
<label for="lk-checkbox-news">Hide LinkedIn's news</label>
</div>
Refresh to see changes.
</br></br>
<div> © 2024. Darren Tu.</div>
</div>
</div>
</br>
<script type="text/javascript" src="popup.js"></script>
</body>
</html>