-
Notifications
You must be signed in to change notification settings - Fork 0
/
chopper.html
46 lines (36 loc) · 1.63 KB
/
chopper.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-us">
<head>
<meta charset="utf-8">
<title>Chopper</title>
<link rel="icon"
type="image/png"
href="img/guillotine.ico">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="mainContent">
<textarea id="urls" class="box" type="text" placeholder="Introduce the URLs"></textarea>
<textarea id="results" class="box" type="text" placeholder="Results"></textarea>
<div id="control_container">
<div id="control_settings">
<input type="radio" name="radio" value="remove" checked="checked">Remove http/https<br>
<input type="radio" name="radio" value="column">Organize by columns<br>
<input type="radio" name="radio" value="quotes">Add quotes to each domain<br>
</div>
<div id="duplicates_status_container">
<h4>Summary</h4>
<textarea id="summary" class="duplicates_status" type="text" placeholder="Summary"></textarea>
<h4>Removed URLs</h4><div hidden id="warning_message"><p><b>Some blacklisted domains have been eliminated. You might want to double check that.</b></p></div><img hidden id="info" src="img/warning.ico">
<textarea readonly id="removed_urls" class="duplicates_status" type="text" placeholder="Removed URLs"></textarea>
</div>
<span id="copy_to_clipboard"><input id="clipboard" type="checkbox" name="checkbox" value="clipboard">Copy result to clipboard</span>
<input id="remove" type="submit" value="Go!"/>
</div>
<div class="clear"></div>
</div>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="files/blacklisted_domains.js"></script>
<script src="script.js"></script>
</html>