Quick Files Download

Quick Files Download

An extension that enables you easily and quickly download multiple files from websites. It also allows you to keep track of…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Quick Files Download",
  "description": "",
  "version": "1.0.0.45",
  "manifest_version": 3,
  "default_locale": "en",
  "offline_enabled": true,
  "action": {
    "default_title": "__MSG_app_name__",
    "default_icon": "img/16.png",
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "alarms",
    "downloads"
  ],
  "icons": {
    "16": "img/16.png",
    "32": "img/32.png",
    "64": "img/64.png",
    "128": "img/128.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content/content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ]
}