sunglasses

Tints webpages so it doesn't hurt your eyes

What is sunglasses?

sunglasses is a Chrome extension developed by joshuahou, and its main feature is "Tints webpages so it doesn't hurt your eyes".

Extension Screenshots

screenshot
screenshot

Download sunglasses Extension CRX File

Download sunglasses extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Tints webpages so websites with white backgrounds don't hurt your eyes when you're computing in the dark.  Monitors can set brightness, but only globally and not for webpages only, which are more likely to be brighter than terminal windows.

Tweet @jshou if you have suggestions/bug reports.

Version 1.1
* Updated for Chrome manifest v2
* Security updates

Version 0.4.2

* Keyboard shortcuts!  Try refreshing the tab if it doesn't work immediately.
* Ctrl+shift+9 darkens, Ctrl+shift+8 lightens
* The old shortcuts in 0.4.0 and 0.4.1 were causing problems in certain versions of Chrome.  Please install the updated version if you have 0.4 or 0.4.1 installed.

New in version 0.3:

* Darkness settings persist across browser restarts                    

Extension Basic Information

Name sunglasses sunglasses
ID elcjekocfhomlfniihikpmbbgjdbgcoo
Official URL https://chromewebstore.google.com/detail/sunglasses/elcjekocfhomlfniihikpmbbgjdbgcoo
Description Tints webpages so it doesn't hurt your eyes
File Size 34.71 KB
Installation Count 2,200
Current Version 1.1
Last Updated 2012-07-28
Publish Date 2012-07-28
Rating 4.15/5 Total 79 Ratings
Developer joshuahou
Payment Type free
Extension Website http://github.com/jshou/sunglasses
Supported Languages en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "sunglasses",
    "version": "1.1",
    "description": "Tints webpages so it doesn't hurt your eyes",
    "icons": {
        "48": "images\/sunglasses_48.png",
        "128": "images\/sunglasses_128.png"
    },
    "browser_action": {
        "default_icon": "images\/sunglasses_19.png",
        "default_title": "sunglasses settings",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "tabs",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "keymaster.js",
                "sunglasses.js"
            ],
            "css": [
                "sunglasses.css"
            ]
        }
    ]
}