Download panel

Download panel

Adds a download panel to the Developer Tools.

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 panel",
  "version": "0.4.0",
  "description": "Adds a download panel to the Developer Tools.",
  "homepage_url": "https://github.com/stefansundin/chrome-download-panel",
  "author": "Stefan Sundin",
  "icons": {
    "16": "img/icon16.png",
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png",
    "256": "img/icon256.png"
  },
  "background": {
    "service_worker": "sw.js"
  },
  "devtools_page": "devtools.html",
  "options_ui": {
    "page": "options.html"
  },
  "action": {
    "default_icon": {
      "38": "img/icon38.png"
    },
    "default_popup": "options.html"
  },
  "permissions": [
    "downloads",
    "clipboardRead",
    "storage"
  ],
  "minimum_chrome_version": "96"
}