Be awake

Be awake

Extension that keeps your computer awake, by requesting the system not to sleep when activated using icon.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.0",
  "name": "__MSG_chrome_extension_name__",
  "description": "__MSG_chrome_extension_description__",
  "default_locale": "en_US",
  "manifest_version": 3,
  "icons": {
    "16": "img/icons/icon-16.png",
    "32": "img/icons/icon-32.png",
    "48": "img/icons/icon-48.png",
    "128": "img/icons/icon-128.png"
  },
  "action": {
    "default_icon": "img/icons/inactive-48.png"
  },
  "background": {
    "service_worker": "eventPage.js"
  },
  "permissions": [
    "storage",
    "power"
  ]
}