Skip to content

Commit 4c1cd10

Browse files
authored
Merge pull request #5 from ssavi-ict/c_list
LGTM
2 parents 3873509 + 57b5f84 commit 4c1cd10

27 files changed

+655
-17
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
### **1. Activate on Google Chrome browser**
77
To activate this extension on your Google Chrome browser.
88

9-
Download the chrome version **[LeetCode Which Company.zip](https://github.com/ssavi-ict/LC-Which-Company/raw/main/chrome/LeetCode%20Which%20Company.zip)**.
9+
Download the chrome version **[LeetCode Which Company.zip](https://github.com/ssavi-ict/LC-Which-Company/raw/main/chrome/LC-Which-Company-chrome-1.0.2.zip)**.
1010
-----
1111
1. Extract the downloaded ZIP file
1212
2. On your `Google Chrome` browser, go to `Extensions`.
@@ -27,6 +27,8 @@ When solving a problem if you click on the ![icon](chrome/res/32.png) from the *
2727

2828
1. If the extension is able find the `Company Names` for the leetcode problem on the current window then it will show as follows -
2929
![found](chrome/res/showing_value_ui.png)
30+
💥 NEW FEATURE 💥
31+
- Once you click on the **[Complete List]** button it will open up a page where you can see all the problems available in our storage with company names are listed. [all_list](/chrome/res/complete_list.png)
3032

3133
2. If the extension is not able to find the `Company Names` for the leetcode problem on the current window or if the current window is not a leetcode problem then it will show as follows -
3234
![not found](chrome/res/showing_not_found_ui.png)
@@ -42,6 +44,8 @@ We appreciate your intention towards contributing in this repository.
4244

4345
This extension is a small effort for all the LeetCode non-premium users who wants to have the company informations while solving a leetcode problem.
4446

47+
We would request someone having **Chrome Developer** account contact *[email protected]* to publish this extension on chrome web store
48+
4549
Currently we are accepting only the `Company Contributions` to enrich the company database. To contribute please follow the instructions of this issue [[CONTRIBUTE] Dear Contributors, Requesting Your Attention Regarding Company Contribution](https://github.com/ssavi-ict/LC-Which-Company/issues/4).
4650

4751
----
Binary file not shown.

chrome/css/bootstrap.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/css/jquery.dataTables.min.css

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

chrome/css/styles.css

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
body{
2+
3+
background-color: #eee;
4+
}
5+
6+
table th , table td{
7+
text-align: center;
8+
}
9+
10+
table tr:nth-child(even){
11+
background-color: #e4e3e3
12+
}
13+
14+
th {
15+
background: #333;
16+
color: #fff;
17+
}
18+
19+
.pagination {
20+
margin: 0;
21+
}
22+
23+
.pagination li:hover{
24+
cursor: pointer;
25+
}
26+
27+
.header_wrap {
28+
padding:30px 0;
29+
}
30+
.num_rows {
31+
width: 20%;
32+
float:left;
33+
}
34+
.tb_search{
35+
width: 20%;
36+
float:right;
37+
}
38+
.pagination-container {
39+
width: 70%;
40+
float:left;
41+
}
42+
43+
.rows_count {
44+
width: 20%;
45+
float:right;
46+
text-align:right;
47+
color: #999;
48+
}

0 commit comments

Comments
 (0)