-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
38 lines (35 loc) · 789 Bytes
/
popup.html
File metadata and controls
38 lines (35 loc) · 789 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
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<title>SERP URL Cleaner</title>
<style>
body {
width: 300px;
font-family: Arial;
}
input {
width: 92%;
padding: 10px;
margin: 5px 0;
}
button {
width: 100%;
padding: 10px;
font-size: 16px;
}
#result {
margin-top: 10px;
font-size: 14px;
}
</style>
</head>
<body>
<h1 style="text-align: center;">SERP URL Cleaner</h1>
<button id="toggleButton">Disable</button>
<hr>
<input type="text" id="urlInput" placeholder="Enter URL to Clean">
<button id="cleanButton">Clean URL</button>
<p id="result"></p>
<script src="popup.js"></script>
</body>
</html>