Skip to content

Commit bb215e5

Browse files
authored
Merge pull request #363 from ssavi-ict/v2.0.0
[v2.0.0] Major Update - #194
2 parents 3f5d2b1 + 392850d commit bb215e5

25 files changed

+1209
-198
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Find all the change history listed below
22

3+
**[31/12/2023]**
4+
- v2.0.0 [Features](https://github.com/ssavi-ict/LeetCode-Which-Company/issues/194)
5+
- Popular SDE Sheet sheets.
6+
- Progress tracking window for each sheet.
7+
- Summarized progress tracking status.
8+
- Reset progress for the currently selected sheet and all available sheets.
9+
- Notices on top of the page.
10+
- Change the appearance of the DSA preparation section and the Contest viewing section.
11+
- Chrome only update.
12+
- README Updated.
13+
314
**[12/11/2023]**
415
- v1.0.8 [Features](https://github.com/ssavi-ict/LeetCode-Which-Company/issues/263)
516
- (✯) Notation for recently asked questions reflected in the following page

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Available In -
22
<center><a href = "https://chrome.google.com/webstore/detail/cracktech-find-leetcode-c/fmbicfmfmangckllfaomfkhdankgapfk" target="_blank"><img src="/static/chrome-webstore.png" width="200"></a> &nbsp; &nbsp; &nbsp; &nbsp;| &nbsp; &nbsp; &nbsp; &nbsp;<a href = "https://addons.mozilla.org/en-US/firefox/addon/cracktech-leetcode-company-tag/" target="_blank"><img src="/static/firefox-add-on-store.PNG" width="200"></a> &nbsp; &nbsp; &nbsp; &nbsp;|&nbsp; &nbsp; &nbsp; &nbsp; <a href = "https://microsoftedge.microsoft.com/addons/detail/leetcode-which-company/aknogcjbpnfdmmnlphmkpcldbepblapf" target="_blank"><img src="/static/ms-edge-store.PNG" width="200"></a></center>
33

4-
# CrackTech - Find LeetCode Company Tags
4+
# CrackTech-LeetCode Company Tag, DSA Preparation
55

66
## Current Version: v1.0.8
77

@@ -51,17 +51,19 @@ When solving a problem if you click on the ![icon](chrome/res/32.png) from the *
5151
- Once you click on the **[All Company]** button it will open up a page where you can see all the problems available in our storage with company names are listed as follows - ![all company](/static/webfile/complete_list.png)
5252

5353
- **💥 NEW FEATURE 💥**
54-
- Click on the **[Be A Pro]** button ![upcoming_contest](/static/webfile/upcoming-contest-button.PNG), it will open a page where you can see all upcoming Leetcode weekly and Biweekly contests listed with your local timing and with duration as below -
54+
- Click on the **[DSA Preparation]** button ![DSA Preparation](/static/webfile/dsa-preparation.png), it will open a page where you can see all upcoming Leetcode weekly and Biweekly contests listed with your local timing and with duration as below -
5555
![details_contest_list](/static/webfile/leetcoder.PNG) Clickable link will redirect to actual contest page.
5656
- The checkbox (*marked in red*) can be checked to receive contest notification everyday twice a day or unchecked if you wish not to receive contest notification. ![notification](/static/webfile/notification.PNG)
5757

5858
- **💥 NEW FEATURE 💥** [*Chrome Only Feature*]
59-
- [v1.0.7] Click on the **[Be A Pro]** button ![upcoming_contest](/static/webfile/upcoming-contest-button.PNG), it redirect to your preparation zone.
59+
- [v1.0.7] Click on the **[DSA Preparation]** button ![DSA Preparation](/static/webfile/dsa-preparation.png), it redirect to your preparation zone.
6060
It shows your solving summary from where you can get picture of your solving history. Moreover, your going to get suggestions to solve the next Easy/Medium/Hard problem. Now your preparation is going even more fine-tuned. ![solve the next](/static/webfile/problem-suggestion.PNG)
6161

6262
- **💥 NEW FEATURE 💥** [*Chrome Only Feature*]
63-
- [v1.0.8] From now on you will be able to see the companies who asked a question recently for a certain problem. From the available company information for a problem, there will be a (✯) sign located on the right side of the top **5** company. This feature has been added on **Pop Up Window, All Company** page.
63+
- [v1.0.8] From now on you will be able to see the companies who asked a question recently for a certain problem. From the available company information for a problem, there will be a (✯) sign located on the right side of the top **5** company. This feature has been added on **[Pop Up Window], [All Company]** page.
6464
- *This information has been collected from the different sources of the internet. It will be hard to verify the exact timeline.*
65+
- **💥 NEW FEATURE 💥** [*Chrome Only Feature*]
66+
- [v2.0.0] Click on **[DSA Preparation]** button ![DSA Preparation](/static/webfile/dsa-preparation.png). From now on you can practice the question of SDE Sheets and track progress accordingly. Check your SDE sheet completion status for **Striver's SDE Sheet, Blind75 SDE Sheet, NeetCode SDE Sheet** altogether. ![SDE Sheet](/static/webfile/sde_sheet.gif)
6567

6668
<br>
6769

-405 KB
Binary file not shown.
484 KB
Binary file not shown.

chrome/css/bootstrap-icons.min.css

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

chrome/index.html

Lines changed: 48 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,53 @@
11
<!DOCTYPE html>
22
<html lang="en">
3-
<head>
4-
<meta charset="utf-8">
5-
<title>CrackTech - Find LeetCode Company Tags</title>
6-
<style>
7-
.content-item a img{
8-
height: auto;
9-
width: 70%;
10-
padding: 10px;
11-
flex: 1;
12-
}
13-
</style>
14-
<meta name="description" content="Bootstrap.">
15-
<link href="css/bootstrap.min.css" rel="stylesheet">
16-
<!-- <link href="css/styles.css" rel="stylesheet"> -->
17-
<script src="script/jquery.min.js"></script>
18-
<link rel="stylesheet" href="css/jquery.dataTables.min.css"></style>
19-
<script type="text/javascript" src="script/jquery.dataTables.min.js"></script>
20-
<script type="text/javascript" src="script/bootstrap.min.js"></script>
21-
<script src="script/script.js"></script>
22-
</head>
23-
<body style="margin:20px auto;">
24-
3+
<head>
4+
<meta charset="utf-8">
5+
<title>CrackTech-LeetCode Company Tag, DSA Preparation</title>
6+
<style>
7+
.content-item a img{
8+
height: auto;
9+
width: 60%;
10+
padding: 10px;
11+
flex: 1;
12+
}
13+
#noticeListContainer {
14+
border: 2px dashed red;
15+
padding: 10px;
16+
border-radius: 5px;
17+
margin-top: 15px;
18+
font-family: Verdana, Geneva, Tahoma, sans-serif;
19+
background-color: #f8f6f6; /* Light gray background */
20+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Gray shadow */
21+
}
22+
23+
#noticeTitle {
24+
font-size: 15px;
25+
color: #336699; /* Eye-soothing color */
26+
margin-bottom: 10px;
27+
}
28+
29+
#noticeList {
30+
list-style-type: decimal;
31+
}
32+
33+
#noticeList li {
34+
font-size: 12px;
35+
margin-bottom: 5px;
36+
color: dodgerblue;
37+
}
38+
</style>
39+
<script type="text/javascript" src="script/notices.script.js"></script>
40+
<meta name="description" content="Bootstrap.">
41+
<link href="css/bootstrap.min.css" rel="stylesheet">
42+
<script src="script/jquery.min.js"></script>
43+
<link rel="stylesheet" href="css/jquery.dataTables.min.css"></style>
44+
<script type="text/javascript" src="script/jquery.dataTables.min.js"></script>
45+
<script type="text/javascript" src="script/bootstrap.min.js"></script>
46+
<script src="script/script.js"></script>
47+
</head>
48+
<body style="margin:20px auto;">
2549
<div class="container" style="margin: 0 auto; border: 1px dotted gray;">
50+
<div id="noticeListContainer"></div>
2651
<div class="intro-content-1" style="font-family: 'Segoe UI'; font-size: medium; text-align: center;">
2752
<h1>APPRECIATE</h1>
2853
Hello, Dear Leetcoder... <br>
@@ -97,5 +122,5 @@ <h1>THANK YOU</h1>
97122
Made with &#10084; by <a href="https://www.linkedin.com/in/ssavi-ict/" target="_blank"><b>Avik Sarkar</b></a>
98123
</footer>
99124
</div>
100-
</body>
125+
</body>
101126
</html>

0 commit comments

Comments
 (0)