Wide Awake

Overrides display sleep and keeps monitor on

What is Wide Awake?

Wide Awake is a Chrome extension developed by benzihomo, and its main feature is "Overrides display sleep and keeps monitor on".

Extension Screenshots

screenshot

Download Wide Awake Extension CRX File

Download Wide Awake 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

                        Press "Alt+Shift+W" to toggle the display's sleep mode. Useful to prevent the display dimming when watching a cool movie.                    

Extension Basic Information

Name Wide Awake Wide Awake
ID dnaojefanpmakfgcaliphepgoiiafmpf
Official URL https://chrome.google.com/webstore/detail/wide-awake/dnaojefanpmakfgcaliphepgoiiafmpf
Description Overrides display sleep and keeps monitor on
File Size 9.56 KB
Installation Count 18,015
Current Version 0.1
Last Updated 2014-06-19
Publish Date 2014-06-19
Rating 2.45/5 Total 11 Ratings
Developer benzihomo
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wide Awake",
    "description": "Overrides display sleep and keeps monitor on",
    "version": "0.1",
    "manifest_version": 2,
    "permissions": [
        "power",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "extension.css"
            ],
            "js": [
                "extension.js"
            ]
        }
    ],
    "commands": {
        "toggle-wide-awake": {
            "suggested_key": {
                "default": "Alt+Shift+W"
            },
            "description": "Toggle Wide Awake"
        }
    }
}