Skip to content

Commit

Permalink
Initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
nmasnadithya committed Jan 15, 2022
1 parent fe80bdc commit ad8028e
Show file tree
Hide file tree
Showing 68 changed files with 18,242 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
build/
node_modules/

.DS_Store
.idea/
lib/
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx lint-staged
5 changes: 5 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
build
lib
assets
*.html

5 changes: 5 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"semi": false,
"singleQuote": true,
"tabWidth": 4
}
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,14 @@
# chrome-extension
Source code of the paper.labml.ai chrome extension

Source code of the papers.labml.ai Chrome extension

## Setting up

1. Create a directory named lib
2. Add [weya](https://github.com/vpj/weya) to that directory either by directly cloning or adding a symlink (Make sure
you have the latest version of weya if symlinking)
3. Run `npm install`
4. Run `npm run build`
5. Turn on developer mode on chrome
6. Click load unpacked extension on chrome
7. Select the `build` folder that was created after 4th step
34 changes: 34 additions & 0 deletions assets/font-awesome/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
Font Awesome Free License
-------------------------

Font Awesome Free is free, open source, and GPL friendly. You can use it for
commercial projects, open source projects, or really almost whatever you want.
Full Font Awesome Free license: https://fontawesome.com/license/free.

# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/)
In the Font Awesome Free download, the CC BY 4.0 license applies to all icons
packaged as SVG and JS file types.

# Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL)
In the Font Awesome Free download, the SIL OFL license applies to all icons
packaged as web and desktop font files.

# Code: MIT License (https://opensource.org/licenses/MIT)
In the Font Awesome Free download, the MIT license applies to all non-font and
non-icon files.

# Attribution
Attribution is required by MIT, SIL OFL, and CC BY licenses. Downloaded Font
Awesome Free files already contain embedded comments with sufficient
attribution, so you shouldn't need to do anything additional when using these
files normally.

We've kept attribution comments terse, so we ask that you do not actively work
to remove them from files, especially code. They're a great way for folks to
learn about Font Awesome.

# Brand Icons
All brand icons are trademarks of their respective owners. The use of these
trademarks does not indicate endorsement of the trademark holder by Font
Awesome, nor vice versa. **Please do not use brand logos for any purpose except
to represent the company, product, or service to which they refer.**
5 changes: 5 additions & 0 deletions assets/font-awesome/brands.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions assets/font-awesome/fontawesome.min.css

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions assets/font-awesome/regular.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions assets/font-awesome/solid.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added assets/font-awesome/webfonts/fa-brands-400.eot
Binary file not shown.
Loading

0 comments on commit ad8028e

Please sign in to comment.