-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpopup.html
45 lines (41 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Easy Apply Completion</title>
<style>
body {
width: 300px;
height: 200px;
padding: 10px;
background-color: #f4f6f8; /* LinkedIn background color */
font-family: 'Helvetica Neue', Arial, sans-serif; /* LinkedIn font family */
color: #1c1e21; /* LinkedIn text color */
}
h1 {
color: #0077b5; /* LinkedIn blue color for headings */
}
p {
color: #1c1e21; /* LinkedIn text color */
}
button {
background-color: #0077b5; /* LinkedIn blue color for buttons */
color: #ffffff; /* White text color for buttons */
padding: 10px;
border: none;
cursor: pointer;
}
button:hover {
background-color: #005e8b; /* Darker blue on hover */
}
</style>
</head>
<body>
<h1>Easy Apply Completion for currently selected job.</h1>
<p>Click the button to go through autocomplete.</p>
<button id="clickButton">Easy Apply</button>
<button id="removeOldButton">Remove Old Jobs</button>
<script src="popup.js"></script>
</body>
</html>