-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
46 lines (46 loc) · 1.88 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
34
35
36
37
38
39
40
41
42
43
44
45
46
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Twitter Batch Mutter</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<div class="twitter-link">
<a class="mute-page-link" title="Twitter mute page" href="https://twitter.com/settings/muted_keywords" target="_blank">
<img class="twitter-image" src="img/Twitter_Bird-mutter.svg" />
</a>
</div>
<form>
<div id="textarea-div">
<div id="textarea-loader" class="loader"></div>
<textarea id="batch_mutter" value="" ></textarea>
</div>
<button id="btn_mutter" type="submit" >Submit</button>
</form>
<div>
<p id="link-more">Show more options</p>
</div>
<div id="more-options">
<form>
<div class="half-width">
<input type="checkbox" id="curse" name="curse" value="curse"/> <label for="curse">curse</label> <br/>
<input type="checkbox" id="movie" name="movie" value="movie"/><label for="movie">Movies and series</label><br/>
</div>
<div class="half-width">
<input type="checkbox" id="sport" name="sport" value="sport"/><label for="sport">Sport</label><br/>
<input type="checkbox" id="political" name="political" value="political"/><label for="sport">Political</label><br/>
</div>
<input type="text" name="custom" id="custom" placeholder="Custom Url txt file" value=""/>
<span id="btn-more">Add</span>
</form>
</div>
</div>
<script type="text/javascript" src="script.js"></script>
<script type="text/javascript" src="popup.js"></script>
</body>
</html>