A minimal Firefox/Chrome browser extension that renders web pages in greyscale.
- Go to the repository's Releases page
- Download the latest archive (
.zip) - Extract the archive locally
- Open Chrome and navigate to
chrome://extensions/ - Enable Developer mode (top right)
- Click Load unpacked
- Select the extracted extension folder
- Go to https://addons.mozilla.org/en-US/firefox/addon/squint/ and install the extension
- Go to the repository's Releases page
- Download the latest archive (
.zip) - Extract the archive locally
- Open Firefox and navigate to
about:debugging#/runtime/this-firefox - Click Load Temporary Add-on`
- Select manifest.json in the extracted extension folder
Once installed, go to any page and press alt+1 on keyboard to turn whole page greyscale.
Press it again to go back to original look.
alt+2, alt+3 and alt+3 also blur and increse contrast in various ways to blob the image for study purposes.
The extension works by applying a bunch of CSS styles to a html tag, something like this:
html {
filter: sepia(1) blur(2px) contrast(2) grayscale(1);
}