-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
56 lines (55 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="google-signin-client_id" content="YOUR_CLIENT_ID.apps.googleusercontent.com">
<title>LinkedIn Post Summarizer</title>
<style>
body {
font-family: Arial, sans-serif;
width: 300px;
padding: 15px;
background-color: #f3f6f8;
}
h1 {
color: #0073b1;
font-size: 18px;
margin-bottom: 10px;
}
p {
font-size: 14px;
line-height: 1.4;
color: #333;
}
#activateButton {
background-color: #0073b1;
color: white;
border: none;
padding: 10px 15px;
font-size: 14px;
cursor: pointer;
border-radius: 5px;
margin-top: 10px;
transition: background-color 0.3s;
}
#activateButton:hover {
background-color: #005582;
}
#status {
margin-top: 10px;
font-style: italic;
color: #666;
}
</style>
</head>
<body>
<h1>LinkedIn Post Summarizer</h1>
<p>This extension adds a 'Summarize' button to long LinkedIn posts. Click the button below to activate the summarizer on the current page.</p>
<button id="activateButton">Activate Summarizer</button>
<!-- <button id="loginButton">Sign In</button> -->
<p id="status"></p>
<script src="https://accounts.google.com/gsi/client" async defer></script>
<script src="popup.js"></script>
</body>
</html>