Auto Shutdown

Auto Shutdown

Executes a system-level command to shut down, hibernate or standby your operating system when all downloads are finished

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.8",
  "name": "Auto Shutdown",
  "description": "Executes a system-level command to shut down, hibernate or standby your operating system when all downloads are finished",
  "permissions": [
    "storage",
    "nativeMessaging",
    "downloads",
    "power"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "data/icons/16.png",
    "19": "data/icons/19.png",
    "32": "data/icons/32.png",
    "38": "data/icons/38.png",
    "48": "data/icons/48.png",
    "64": "data/icons/64.png",
    "128": "data/icons/128.png",
    "256": "data/icons/256.png",
    "512": "data/icons/512.png"
  },
  "browser_action": {},
  "homepage_url": "https://add0n.com/auto-shutdown.html",
  "options_ui": {
    "page": "data/options/index.html",
    "chrome_style": true
  }
}