Strong Caffeine

Strong Caffeine

Prevents OS from automatically going to sleep or starting screen saver. Intended for use with kiosk web apps.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "0.1.0",
  "name": "Strong Caffeine",
  "description": "Prevents OS from automatically going to sleep or starting screen saver.  Intended for use with kiosk web apps.",
  "permissions": [
    "power"
  ],
  "icons": {
    "128": "data/icons/128.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {},
  "homepage_url": "https://github.com/mhenry1384/caffeine"
}