-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptions.html
35 lines (28 loc) · 970 Bytes
/
options.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
34
35
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.1/css/bulma.min.css">
<link rel="stylesheet" href="options.css">
</head>
<body>
<div class="content">
<div id="titleContainer">
<img src="assets/icon128.png" width="128px">
<h1>Twitter Ad Blocker</h1>
</div>
<div>
<input type="checkbox" id="blockPromotedTweets">
Block promoted tweets
</div>
<div>
<input type="checkbox" id="blockPromotedTrends">
Block promoted trends
</div>
<div id="saveButtonContainer">
<div id="status"></div>
<button id="save" class="button is-success">Save options</button>
</div>
</div>
<script src="options.js"></script>
</body>
</html>