Download Manager

Download Manager

A less intrusive way to access your recent downloads

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Download Manager",
  "version": "4.1.3",
  "short_name": "Downloads",
  "author": "James Coyle",
  "description": "A less intrusive way to access your recent downloads",
  "icons": {
    "512": "icon.png"
  },
  "permissions": [
    "downloads",
    "downloads.open",
    "downloads.shelf",
    "storage",
    "sidePanel"
  ],
  "optional_permissions": [
    "notifications"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "Downloads"
  },
  "options_page": "options.html",
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Alt+J",
        "mac": "Alt+J",
        "chromeos": "Alt+J",
        "linux": "Alt+J"
      }
    }
  },
  "background": {
    "type": "module",
    "service_worker": "background.js"
  },
  "side_panel": {
    "default_path": "sidePanel.html"
  }
}