-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
46 lines (46 loc) · 1012 Bytes
/
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>
<head>
<meta charset="UTF-8">
<title>Replace Words Extension</title>
<style>
body {
width: 200px;
height: 100px;
display: flex;
justify-content: center;
align-items: center;
background-color: #f9f9f9;
margin: 0;
}
button {
padding: 10px 20px;
font-size: 16px;
background-color: #6200ea;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
}
button:hover {
background-color: #3700b3;
}
button:focus {
outline: none;
}
button span {
margin-left: 5px;
}
</style>
</head>
<body>
<button id="replaceButton">
<span>Режим хуйло</span>
<span>😈</span>
</button>
<script src="popup.js"></script>
</body>
</html>