commit
e9b2e6422b
@ -0,0 +1,29 @@
|
|||||||
|
# Chrome Theme Extension
|
||||||
|
|
||||||
|
**Tier:** 2-Intermediate
|
||||||
|
|
||||||
|
Build your own customized chrome theme extention. You can also add night light (also known as blue light filter) feture that will automatically turn on during the night time so that user's eye won't get stressed while coding whole night or binge watching netflix 😛
|
||||||
|
|
||||||
|
- How chrome extention work(behind the scenes).
|
||||||
|
- Basic understanding of HTML/CSS, JS, JSON is required
|
||||||
|
|
||||||
|
## User Stories
|
||||||
|
|
||||||
|
- [ ] User can make a a theme accoring to their own personal color preference
|
||||||
|
- [ ] This will extremely benefit the people suffering from color blindness.
|
||||||
|
- [ ] User can install and set it as default theme
|
||||||
|
|
||||||
|
## Bonus features
|
||||||
|
|
||||||
|
- [ ] Deploy extention to chrome store
|
||||||
|
- [ ] Add a toggle button to manually control the night sight feature
|
||||||
|
- [ ] Create same extention for multiple browser like firefox, etc.
|
||||||
|
|
||||||
|
## Useful links and resources
|
||||||
|
|
||||||
|
- [Getting Started](https://developer.chrome.com/extensions/getstarted)
|
||||||
|
|
||||||
|
## Example projects
|
||||||
|
|
||||||
|
- [chrome-developer-edition-dark](https://github.com/KeenRivals/chrome-developer-edition-dark)
|
||||||
|
- [Night Shift(BlueLight Filter)](https://chrome.google.com/webstore/detail/night-shiftbluelight-filt/hkjikimiiojjiiffmgngnkefacpbgajl?hl=en)
|
@ -0,0 +1,28 @@
|
|||||||
|
# Image Scanner
|
||||||
|
|
||||||
|
**Tier:** 2-Intermediate
|
||||||
|
|
||||||
|
Create an android and ios app to find phone numbers, email and website links available in a photo and then organise it in the app.
|
||||||
|
|
||||||
|
## User Stories
|
||||||
|
|
||||||
|
- [ ] User can either click a photo or upload a photo from the gallery
|
||||||
|
- [ ] Processing is done on the image.
|
||||||
|
- [ ] If there are any phone numbers, email or web links present in the image then they are listed in the cards properly organized.
|
||||||
|
- [ ] On tap on the details, an option is provided to save as contact.
|
||||||
|
- [ ] History of search results are provided in the list view
|
||||||
|
|
||||||
|
## Bonus features
|
||||||
|
|
||||||
|
- [ ] Provide an option to add tags for each search results.
|
||||||
|
- [ ] Add search funtionality based on tags
|
||||||
|
- [ ] Add login and sync the results across multiple devices.
|
||||||
|
|
||||||
|
## Useful links and resources
|
||||||
|
|
||||||
|
- Use google OCR to read text from the image uploaded. https://cloud.google.com/vision/docs/ocr
|
||||||
|
- Apply regex to identify the phone number , emails and website links on the text identified from the OCR.
|
||||||
|
|
||||||
|
## Example projects
|
||||||
|
|
||||||
|
- Android App for text detection - https://github.com/alexzaitsev/ocr-google-vision
|
Loading…
Reference in new issue