Chrome extension which makes GitHub.com respond to changes of the browser width. It overwrites GitHub.com css rules related to width so that the content of GitHub.com can fit a narrow browser screen.
Please let me know via GitHub issues if you have ideas how the extension could be improved.
GitHub.com without the Chrome extension:
GitHub.com with the Chrome extension:
The extension can be installed from the Chrome Web Store: https://chrome.google.com/webstore/detail/github-responsive-width-l/eneihknacbphgmbibidldblpadjcfifk
The extensions includes github-responsive-width-layout.css
file which will overwrite some of the GitHub styles related to width.
For example, the existing style:
.container {
width: 980px;
...
...
}
has been replaced with:
.container {
width: 99% !important;
max-width: 980px !important;
...
...
}