-
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.
- Loading branch information
1 parent
3346fce
commit acba7c7
Showing
2 changed files
with
34 additions
and
0 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 |
---|---|---|
|
@@ -4,6 +4,7 @@ node_modules | |
# Build directory | ||
build/ | ||
dist/ | ||
day9tv-optimizer.zip | ||
|
||
# Misc | ||
.DS_Store | ||
|
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,33 @@ | ||
# Day9.tv Optimizer | ||
|
||
A simple extension that provides some UX benefits to https://day9.tv/ visitors. | ||
|
||
[Chrome Web Store](https://chrome.google.com/webstore/detail/day9tv-optimizer/jaehlnfcnnapnhookcomgmmmkojebdla) | ||
|
||
## Configuration | ||
|
||
### Accessibility | ||
|
||
#### Font Contrast | ||
|
||
Increases font contrast across the website to comply with WCAG AAA standard where possible. ([Contrast checker](https://webaim.org/resources/contrastchecker/)) | ||
|
||
#### Font Improvements | ||
|
||
Some miscellaneous improvements to fonts that didn't fit anywhere else. | ||
|
||
### Quality of Life | ||
|
||
#### Form Scaling | ||
|
||
Scale WYSIWYG input fields' height according to content. | ||
|
||
## Development setup | ||
|
||
Requires Yarn & Node.js | ||
|
||
Running `yarn dev` starts webpack in watch mode and outputs the bundle in `build` folder. | ||
|
||
Running `yarn build` builds a production version of the extension and outputs the bundle in `dist` folder. | ||
|
||
For further info how to work with extensions visit [Getting Started - Google Chrome](https://developer.chrome.com/extensions/getstarted). |