Auto Shutdown Extension

Auto Shutdown Extension

Small and simple extension for automatic computer shutdown

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Auto Shutdown Extension",
  "version": "0.1.25",
  "description": "Small and simple extension for automatic computer shutdown",
  "icons": {
    "48": "logo-48.png",
    "128": "logo-128.png"
  },
  "action": {
    "default_popup": "index.html",
    "default_icon": "./icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "permissions": [
    "activeTab",
    "nativeMessaging",
    "notifications",
    "webNavigation",
    "storage",
    "alarms"
  ],
  "offline_enabled": true
}