forked from QasimWani/LeetHub
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request QasimWani#172 from QasimWani/webstore
New Year's push
- Loading branch information
Showing
13 changed files
with
767 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve LeetHub | ||
title: '' | ||
labels: bug | ||
assignees: QasimWani | ||
|
||
--- | ||
|
||
## Please review previous closed issues before filling out a new one! Duplicate issues will be closed without comment. | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
name: Bug Report | ||
description: File a bug report | ||
title: "[Bug]: " | ||
labels: [bug, triage] | ||
assignees: | ||
- octocat | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: input | ||
id: contact | ||
attributes: | ||
label: Contact Details | ||
description: How can we get in touch with you if we need more info? | ||
placeholder: ex. email@example.com | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: Also tell us, what did you expect to happen? | ||
placeholder: Tell us what you see! | ||
value: "A bug happened!" | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: version | ||
attributes: | ||
label: Version | ||
description: What version of our software are you running? | ||
options: | ||
- 1.0.2 (Default) | ||
- 1.0.3 (Edge) | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: browsers | ||
attributes: | ||
label: What browsers are you seeing the problem on? | ||
multiple: true | ||
options: | ||
- Firefox | ||
- Chrome | ||
- Safari | ||
- Microsoft Edge | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log output | ||
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. | ||
render: shell | ||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Code of Conduct | ||
description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com) | ||
options: | ||
- label: I agree to follow this project's Code of Conduct | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
name: Feature request | ||
about: What would enhance your LeetHub experience? | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Please review previous closed issues before filling out a new one! Duplicate issues will be closed without comment. | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
scripts/authorize.js | ||
scripts/oauth2.js | ||
node_modules | ||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,49 @@ | ||
{ | ||
"manifest_version" : 2, | ||
"name" : "LeetHub", | ||
"description" : "Automatically integrate your code with LeetCode and GitHub", | ||
"homepage_url": "https://github.com/QasimWani/LeetHub", | ||
"version" : "0.1.3", | ||
"author" : "Qasim Wani", | ||
"browser_action": { | ||
"default_icon": "assets/thumbnail.png", | ||
"default_popup": "popup.html" | ||
}, | ||
"icons": { | ||
"16": "assets/thumbnail.png", | ||
"48": "assets/thumbnail.png", | ||
"128": "assets/thumbnail.png" | ||
}, | ||
"background": { | ||
"scripts": ["scripts/background.js"], | ||
"persistent": false | ||
}, | ||
"permissions": [ | ||
"tabs", | ||
"activeTab", | ||
"unlimitedStorage", | ||
"storage" | ||
], | ||
"content_scripts": [ | ||
{ | ||
"matches": [ | ||
"https://leetcode.com/*", "https://github.com/*" | ||
], | ||
"js": ["scripts/leetcode.js", "scripts/authorize.js"], | ||
"run_at": "document_start" | ||
} | ||
"manifest_version": 2, | ||
"name": "LeetHub", | ||
"description": "Automatically integrate your Leetcode, GeeksforGeeks submissions to GitHub", | ||
"homepage_url": "https://github.com/QasimWani/LeetHub", | ||
"version": "1.1.0", | ||
"author": "Qasim Wani", | ||
"browser_action": { | ||
"default_icon": "assets/thumbnail.png", | ||
"default_popup": "popup.html" | ||
}, | ||
"icons": { | ||
"16": "assets/thumbnail.png", | ||
"48": "assets/thumbnail.png", | ||
"128": "assets/thumbnail.png" | ||
}, | ||
"background": { | ||
"scripts": [ | ||
"scripts/background.js" | ||
], | ||
"persistent": false | ||
}, | ||
"permissions": [ | ||
"https://github.com/*", | ||
"https://api.github.com/*", | ||
"https://leetcode.com/*", | ||
"https://practice.geeksforgeeks.org/*", | ||
"tabs", | ||
"activeTab", | ||
"unlimitedStorage", | ||
"storage" | ||
], | ||
"content_scripts": [ | ||
{ | ||
"matches": [ | ||
"https://leetcode.com/*", | ||
"https://github.com/*", | ||
"https://practice.geeksforgeeks.org/*" | ||
], | ||
"content_security_policy": "script-src 'self' https://code.jquery.com/jquery-3.3.1.min.js https://github.com/login/oauth/authorize https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.js; object-src 'self'" | ||
"js": [ | ||
"scripts/leetcode.js", | ||
"scripts/authorize.js", | ||
"scripts/gfg.js" | ||
], | ||
"run_at": "document_idle" | ||
} | ||
], | ||
"content_security_policy": "script-src 'self' https://code.jquery.com/jquery-3.3.1.min.js https://github.com/login/oauth/authorize https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.js; object-src 'self'" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.