-
-
Notifications
You must be signed in to change notification settings - Fork 5
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 #24 from sauravhathi/dev
Bug Fixes and New Feature: Shareable Link for Assignment Submission + README Updates
- Loading branch information
Showing
26 changed files
with
198 additions
and
111 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,6 @@ | ||
github: sauravhathi | ||
ko_fi: # Replace with a single Ko-fi username | ||
custom: | ||
- devfund@airtel | ||
- https://www.buymeacoffee.com/sauravhathi | ||
- https://paypal.me/sauravkumar680 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
rdr.js | ||
scripts/content.js | ||
popup/popup-o.js | ||
node_modules/ | ||
src/ | ||
webpack.config.js | ||
package*.json | ||
secure.js | ||
.prettierignore | ||
.prettierrc | ||
eslint.config.js | ||
tsconfig.json |
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,18 +1,23 @@ | ||
# Code of Conduct | ||
|
||
## Our Pledge | ||
|
||
We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. | ||
|
||
## Our Standards | ||
|
||
Examples of behavior that contributes to creating a positive environment include: | ||
|
||
- Using welcoming and inclusive language | ||
- Being respectful of differing viewpoints and experiences | ||
- Gracefully accepting constructive criticism | ||
- Focusing on what is best for the community | ||
- Showing empathy towards other community members | ||
|
||
## Enforcement | ||
|
||
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project maintainers. All complaints will be reviewed and investigated promptly and fairly. | ||
|
||
## Attribution | ||
|
||
This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org/), version 1.4. |
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
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
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,35 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Coursera Automation Extension</title> | ||
<script src="scripts/popup.js"></script> | ||
<link rel="stylesheet" href="ui/popup.css" /> | ||
</head> | ||
|
||
<body> | ||
<div id="courseraModel"> | ||
<div id="courseraModelContent"> | ||
<h1 id="courseraModelTitle">Coursera Automation Extension</h1> | ||
<div id="courseraModelGrid"></div> | ||
</div> | ||
<footer id="footer"> | ||
<svg | ||
stroke="#ffffff" | ||
fill="#ffffff" | ||
stroke-width="0" | ||
viewBox="0 0 384 512" | ||
height="1em" | ||
width="1em" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<path | ||
d="M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z" | ||
></path> | ||
</svg> | ||
<span id="author">Saurav Hathi</span> | ||
</footer> | ||
</div> | ||
</body> | ||
</html> |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,14 @@ | ||
.thin-scroll::-webkit-scrollbar { | ||
width: 0.3em; | ||
height: 0.3em; | ||
} | ||
|
||
.thin-scroll::-webkit-scrollbar-track { | ||
-webkit-box-shadow: inset 0 0 6px #eff4ff; | ||
} | ||
|
||
.thin-scroll::-webkit-scrollbar-thumb { | ||
background-color: #3872e3; | ||
outline: none; | ||
border-radius: 10px; | ||
} |
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 @@ | ||
#author, | ||
#footer, | ||
.courseraModelBtn { | ||
font-weight: 700; | ||
} | ||
:root { | ||
--primary-color: #00ff00; | ||
--secondary-color: #333333; | ||
--background-color: #1a1a1a; | ||
} | ||
#courseraModel, | ||
body { | ||
background-color: var(--background-color); | ||
padding: 10px; | ||
border-radius: 10px; | ||
width: fit-content; | ||
height: fit-content; | ||
font-family: Arial, sans-serif; | ||
} | ||
#courseraModelContent { | ||
display: flex; | ||
flex-direction: column; | ||
gap: 14px; | ||
} | ||
#courseraModelTitle { | ||
font-size: 20px; | ||
font-weight: 700; | ||
color: #fff; | ||
margin: 0; | ||
text-align: center; | ||
white-space: nowrap; | ||
} | ||
#courseraModelGrid { | ||
display: grid; | ||
grid-template-columns: repeat(2, 1fr); | ||
gap: 10px; | ||
} | ||
.courseraModelBtn { | ||
padding: 10px; | ||
font-size: 16px; | ||
border: none; | ||
border-radius: 5px; | ||
background-color: var(--secondary-color); | ||
color: var(--primary-color); | ||
cursor: pointer; | ||
white-space: nowrap; | ||
} | ||
|
||
.courseraModelBtn:disabled { | ||
background-color: #333; | ||
color: #666; | ||
cursor: not-allowed; | ||
} | ||
|
||
#footer { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
gap: 10px; | ||
color: #fff; | ||
margin-top: 20px; | ||
} |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.