-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpopup.html
56 lines (50 loc) · 2.49 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">
<title>LeetBook</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css" rel="stylesheet">
<script src="vendors/jquery-3.3.1.min.js"></script>
<script async defer src="vendors/buttons.js"></script>
</head>
<style>
.disable {
background-color: #A0A0A0;
}
</style>
<body>
<div class="ui grid container" style="border: 1px solid black; border-radius: 4px; padding: 10px; margin: 4px;">
<div class="sixteen wide center aligned column">
<h1 id="title">Leet<span style="color: purple;">Book</span></h1>
<div><span><b>1.</b> Make sure you are logged in on LeetCode.com</span></div>
<div><span id="caption"><b>2.</b> Click on the following button to view and download your accepted
submissions.</span></div>
<br />
<div><span id="caption"><b>Do not close the tab.</b></span></div>
<div><span id="caption"><b>Downloading may take upto 10 minutes.</b></span></div>
<div id="process-status" style="padding:10px; color:black; font-weight:bold;"></div>
<div id="caption"
style="line-height: 16px; display: flex; gap: 8px; align-items: center; justify-content: center;">
<a class="github-button" href="https://github.com/TheShubham99/leetcode-to-pdf" data-icon="octicon-star"
data-size="large" data-show-count="true"
aria-label="Star TheShubham99/leetcode-to-pdf on GitHub">Star</a>
on GitHub
</div>
<br>
<button id="download-submissions" class="ui secondary button disable" disabled>
Please wait...
</button>
</div>
<br />
<div id="socials" class="sixteen wide column center aligned">
<a href="https://github.com/TheShubham99/leetcode-to-pdf" target="_blank"><i
class="ui black github icon"></i></a>
<a href="https://www.linkedin.com/in/prathamesh-sahasrabhojane/" target="_blank"><i
class="ui linkedin icon"></i></a>
<a href="mailto:[email protected]" target="_blank"><i class="ui red envelope icon"></i></a>
</div>
<a href="mailto:[email protected]" target="_blank"><i class="ui red bug icon"></i> Report a Bug </a>
</div>
<script type="text/javascript" src="popup.js"></script>
</body>
</html>