Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed new UI issue #576

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
35 changes: 1 addition & 34 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,6 @@
</a>
</p>

<div align="center">
<a href="https://www.producthunt.com/posts/leethub?utm_source=badge-featured&utm_medium=badge&utm_souce=badge-leethub" target="_blank">
<img src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=275757&theme=light" alt="LeetHub - Automatically sync your code b/w Leetcode & GitHub. | Product Hunt" />
</a>

[![Chrome](https://user-images.githubusercontent.com/53124886/111952712-34f12300-8aee-11eb-9fdd-ad579a1eb235.png)](https://chrome.google.com/webstore/detail/leethub/aciombdipochlnkbpcbgdpjffcfdbggi) [![Firefox](https://user-images.githubusercontent.com/53124886/126341427-4a4e57aa-767a-467e-83d2-b31fa3564441.png)](https://addons.mozilla.org/en-US/firefox/addon/leethub/)
</div>



Expand All @@ -59,21 +52,6 @@ As of now, GitHub is developers' #1 portfolio. LeetHub just makes it much easier
<p> <strong>2.</strong> There's no easy way of accessing your leetcode problems in one place! <br>
Moreover, pushing code manually to GitHub from Leetcode is very time consuming. So, why not just automate it entirely without spending a SINGLE additional second on it? </p>

## How does LeetHub work?

<h4> Your LeetHub portfolio could look like <a href="https://github.com/tanyarajhans/LeetCode"> this</a>! </h4>
<p>It's as simple as:</p>
<ol>
<li>After installation, launch LeetHub.</li>
<li>Click on "authorize with GitHub" button to automatically set up your account with LeetHub.</li>
<li>Setup an existing/new repository with LeetHub (private by default) by clicking "Get Started" button.</li>
<li>Begin Leetcoding! To view your progress, simply click on the extension!</li>
</ol>


#### BONUS: Star [this repository](https://github.com/QasimWani/LeetHub) for further development of features. If you want a particular feature, simply [request](https://github.com/QasimWani/LeetHub/labels/feature) for it!


## Why did I build LeetHub?
<p>
The coding interview is arguably the most important part of your interview process, given you get the interview first. As someone who's received multiple internship offers from Fortune 100 companies, getting the interview in the first place is not easy!<br>
Expand All @@ -86,25 +64,14 @@ And that's what LeetHub is supposed to do: indirectly improving your coding skil
![leetcode view](assets/extension/leetcode.png)


# How to set up LeetHub for local development?
# How does LeetHub work?

<ol>
<li>Fork this repo and clone to your local machine</li>
<li>Go to <a href="chrome://extensions">chrome://extensions</a> </li>
<li>Enable <a href="https://www.mstoic.com/enable-developer-mode-in-chrome/">Developer mode</a> by toggling the switch on top right corner</li>
<li>Click 'Load unpacked'</li>
<li>Select the entire LeetHub folder</li>
<li>Run "npm run setup" to install the developer dependencies</li>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why removing this from readme?

</ol>

Other npm commands available:

```
npm run Show list of commands available
npm run format Auto-format JavaScript, HTML/CSS
npm run format-test Test all code is formatted properly
npm run lint Lint JavaScript
npm run lint-test Test all code is linted properly
```

#### And that should be it! Get Hacking...
12 changes: 12 additions & 0 deletions css/popup.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,18 @@ body {
margin-bottom: 0px;
}

#social-icon-container {
display: flex;
justify-content: space-between;
width: 100%;
margin-top: 1rem;
margin-bottom: 1rem;
}

#socials p {
font-weight: bold;
}

.onboarding {
font-family: sans-serif;
border-top: solid black 1px;
Expand Down
1 change: 1 addition & 0 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"homepage_url": "https://github.com/QasimWani/LeetHub",
"version": "1.1.2",
"author": "Qasim Wani",
"co-author": "Mustafa Bawany",
"browser_action": {
"default_icon": "assets/thumbnail.png",
"default_popup": "popup.html"
Expand Down