Downloads Folder Launcher

Downloads Folder Launcher

Quickly open the default 'Downloads' folder. keyboard shortcut: Alt+J.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "sw.js"
  },
  "action": {
    "default_icon": {
      "16": "static/icon-16.png",
      "48": "static/icon-48.png",
      "128": "static/icon-128.png"
    },
    "default_title": "Open 'Downloads' Folder"
  },
  "description": "Quickly open the default 'Downloads' folder. keyboard shortcut: Alt+J.",
  "homepage_url": "https://browsernative.com/chromebook-download-folder-launcher/",
  "icons": {
    "16": "static/icon-16.png",
    "48": "static/icon-48.png",
    "128": "static/icon-128.png"
  },
  "manifest_version": 3,
  "name": "Downloads Folder Launcher",
  "offline_enabled": true,
  "permissions": [
    "downloads"
  ],
  "version": "1.0.0",
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+J"
      }
    }
  }
}