-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
115 lines (102 loc) · 3.18 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Our sample Chrome Extension | Papers</title>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="js/popup.js"></script>
<style type="text/css">
html{
border-radius: 10px;
}
.Main-UI {
background: url('bg.gif');
background-size: 240px;
height: 300px;
width: 255px;
border: 1px;
border-color: black;
border-style: solid;
border-radius: 10px;
}
.footer {
display: block;
bottom: 0;
text-align: center;
color: red;
background-color: black;
}
.input-text {
position: center;
}
.input-label {
color: white;
text-align: center;
}
.nav-tabs {
border-bottom: 1px solid black;
}
.tab-pane {
opacity: 0.8 !important;
background-color: black;
}
.nav>li>a {
position: relative;
display: block;
padding: 10px 15px;
font-size: 10px;
color: red;
font-weight: bolder;
margin-top: 7px;
}
hr {
margin-top: 0px;
margin-bottom: 4px;
border: 0;
border-top: 1px solid #eee;
}
textarea {
height: 40px;
width: 100%;
}
</style>
</head>
<body>
<div class='container Main-UI'>
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#home">URL Encode</a></li>
<li><a data-toggle="tab" href="#menu1">URL Dencode</a></li>
</ul>
<div class="tab-content">
<div id="home" class="tab-pane fade in active">
<br>
<!-- URL Encode -->
<p class="input-label" id="input-label"><b>Input String :</b></p>
<p align="center"><textarea class="input-text encode-input"></textarea></p>
<p align=center><button class="btn btn-primary btn-sm submit-encode" id="getResults">Submit</button></p>
<hr>
<p class="input-label"><b>Result</b></p>
<p align="center"><textarea class="input-text encode-output" id="results"></textarea></p>
<!-- URL Encode ENDS -->
</div>
<div id="menu1" class="tab-pane fade">
<br>
<!-- URL Decode -->
<p class="input-label"><b>Input String :</b></p>
<p align="center"><textarea class="input-text decode-input"></textarea></p>
<p align=center><button class="btn btn-primary btn-sm submit-decode">Submit</button></p>
<hr>
<p class="input-label"><b>Result</b></p>
<p align="center"><textarea class="input-text decode-output"></textarea></p>
<!-- URL Decode ENDS -->
</div>
</div>
</div>
<div style="color: red;background-color: black;text-align: center;">Made by Mr H4cK3r 45H</div>
</body>
<script src="js/jquery-3.4.1.min.js"></script>
<script src="js/bootstrap.js"></script>
<!-- -->
</html>