Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amprew/github-bookmark-extension
A Google Chrome extension for bookmarking your favourite snippets of code! Keep less in your head and learn more.
https://github.com/amprew/github-bookmark-extension
Last synced: 2 months ago
JSON representation
A Google Chrome extension for bookmarking your favourite snippets of code! Keep less in your head and learn more.
- Host: GitHub
- URL: https://github.com/amprew/github-bookmark-extension
- Owner: amprew
- License: mit
- Created: 2020-05-03T16:30:19.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-01-06T07:18:20.000Z (about 2 years ago)
- Last Synced: 2023-03-12T01:03:07.849Z (almost 2 years ago)
- Language: JavaScript
- Homepage:
- Size: 1.35 MB
- Stars: 14
- Watchers: 0
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Github Bookmarks Chrome Extension
A chrome extension for managing your favourite snippets or files of codes. Keep notes / learn more / take a load of remembering.
[View extension in chrome store](https://chrome.google.com/webstore/detail/github-bookmarks/ebokekkpmchijniaphcbknendmdafglf)
## Build production version
As Google Chrome extensions do not require a lot of the boilerplate files and build tools that working on a javascript project does - Docker is introduced to only include the necessary files and keep the extension small. The following commands are used to create this production version of the extension:
*(before these commands are run please make sure you have your docker client running)*
```
image_id=$(docker build . -q)
container_id=$(docker create $image_id)
docker cp $container_id:/extension.zip ./github-bookmark-extension.zip
docker rm $container_id
```*(you can clean up the image with `docker rmi $image_id` unless you want to keep it for debugging)*