Skip to content

Commit 8c3c09e

Browse files
committed
[v1.0.5] Chrom/Firefox Pop updated
1 parent 58f03ec commit 8c3c09e

File tree

3 files changed

+81
-16
lines changed

3 files changed

+81
-16
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
1-
# CrackTech - Get LeetCode Company Tags
1+
# CrackTech - Get LeetCode Company Tags
22

3-
## This extension gives you the information of the companies who asked a certain question in the technical interview.
3+
## CrackTech (previously *LeetCode Which Company*) gives you the information of the companies who asked a certain question in the technical interview.
4+
---
45
Are you preparing for your technical interviews? Are you looking for the question asked by companies like Microsoft, Google, Meta, Apple, etc.? Then this extension gives you what you are looking for.
56

67
This extension is my effort to make your preparation one step better. If you are solving problems on Leetcode and you do not have a premium account to see company information then I am definite that this extension will give you the same experience to some extent. You can prepare for your dream companies and sharpen your DSA skill accordingly.
78

8-
However, since I am continuously updating company information solely, you might not get company information for every single problem as you can find in Leetcode premium. I collect company information from different sources on the internet and update it in my database. So in some cases, you might get some more company information than Leetcode provides.
9+
However, since I am continuously updating company information solely, you might not get company information for every single problem as you can find in Leetcode premium. I collect company information from different sources on the internet and update it in my database. So in some cases, you might get **some more company information** than Leetcode provides.
910

1011
Install this extension/add-on and boost your prep. Wishing you all the very best in your journey.
1112

1213
------
1314
## How this extension is different from existing others -
1415

1516
- Regular updates on company information.
17+
- Addition of new company information for problems almost everyday.
1618
- Company based problem list at a glance.
1719
- A pop-up window extension. No garbage, just the content you needed.
1820
- Flexible to LeetCode UI changes. So no downtime on your preparation.

chrome/popup.html

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,30 @@
1414
word-wrap: break-word;
1515
text-align: center;
1616
}
17+
tr:first-child {
18+
background-color: lightblue;
19+
height: 25px;
20+
}
21+
td:first-child {
22+
font-weight: bold;
23+
font-size: 24px;
24+
}
1725
td a {
1826
display: block;
1927
font-size: 12px;
2028
font-weight: bold;
2129
text-decoration: none;
2230
color: black;
2331
}
32+
tr {
33+
margin-top: 10px;
34+
}
35+
.footer {
36+
text-align: center;
37+
font-size: 12px;
38+
color: gray;
39+
margin-top: 3px;
40+
}
2441
</style>
2542
</head>
2643
<body>
@@ -29,13 +46,19 @@
2946
</div>
3047
<div class="footer_content" id="footer_content_1">
3148
<table>
49+
<tr>
50+
<td colspan="3"><a href="index.html" target="_blank">All Company</a></td>
51+
</tr>
3252
<tr>
3353
<td><a href="https://github.com/ssavi-ict/LeetCode-Which-Company/issues/4" target="_blank">Contribute</a></td>
54+
<td><a href="https://forms.gle/cAW1jxYxUTwgUmMd9" target="_blank">Feedback</a></td>
3455
<td><a href="https://www.buymeacoffee.com/ssavi" target="_blank">Buy Me A Coffee</a></td>
35-
<td><a href="index.html" target="_blank">All Company</a></td>
3656
</tr>
3757
</table>
3858
</div>
59+
<div class="footer">
60+
&copy; ssavi
61+
</div>
3962
</body>
4063
<script type="text/javascript" src="popup.js"></script>
4164
</html>

firefox/popup.html

Lines changed: 52 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,64 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>LC-Which Company</title>
5-
<style type="text/css">
4+
<title>CrackTech - Get LeetCode Company Tags</title>
5+
<style>
6+
table {
7+
width: 500px;
8+
table-layout: fixed;
9+
margin-left: auto;
10+
margin-right: auto;
11+
margin-top: 15px;
12+
}
13+
td {
14+
word-wrap: break-word;
15+
text-align: center;
16+
}
17+
tr:first-child {
18+
background-color: lightblue;
19+
height: 25px;
20+
}
21+
td:first-child {
22+
font-weight: bold;
23+
font-size: 24px;
24+
}
25+
td a {
26+
display: block;
27+
font-size: 12px;
28+
font-weight: bold;
29+
text-decoration: none;
30+
color: black;
31+
}
32+
tr {
33+
margin-top: 10px;
34+
}
35+
.footer {
36+
text-align: center;
37+
font-size: 12px;
38+
color: gray;
39+
margin-top: 3px;
40+
}
641
</style>
742
</head>
843
<body>
944
<div id = "main-content" class="newdiv" style="width: 500px; min-height: 250px; border: 1px solid; border-image: linear-gradient(to right, red,green, blue);border-image-slice: 1;">
1045

1146
</div>
12-
<h3 style="">
13-
<a style="text-decoration:none" href ="https://github.com/ssavi-ict/LC-Which-Company" target="_blank">
14-
Click To Contribute
15-
</a>
16-
</h3>
17-
<h3 style="float: right;margin-top: -45px; border: 1px dotted blue; padding:6px;">
18-
<a style="text-decoration:none" href ="index.html" target="_blank">
19-
Complete List
20-
</a>
21-
</h3>
47+
<div class="footer_content" id="footer_content_1">
48+
<table>
49+
<tr>
50+
<td colspan="3"><a href="index.html" target="_blank">All Company</a></td>
51+
</tr>
52+
<tr>
53+
<td><a href="https://github.com/ssavi-ict/LeetCode-Which-Company/issues/4" target="_blank">Contribute</a></td>
54+
<td><a href="https://forms.gle/cAW1jxYxUTwgUmMd9" target="_blank">Feedback</a></td>
55+
<td><a href="https://www.buymeacoffee.com/ssavi" target="_blank">Buy Me A Coffee</a></td>
56+
</tr>
57+
</table>
58+
</div>
59+
<div class="footer">
60+
&copy; ssavi
61+
</div>
2262
</body>
2363
<script type="text/javascript" src="popup.js"></script>
2464
</html>

0 commit comments

Comments
 (0)