ContentDownloadMaster

ContentDownloadMaster

ContentDownloadMaster extension is here to help you download media files from different websites. It is fast and simple! Just…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ContentDownloadMaster",
  "version": "1.0.2",
  "permissions": [
    "storage",
    "downloads",
    "activeTab",
    "scripting",
    "cookies",
    "alarms"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "js/content_js/providers/tubes.js",
        "libs/jquery.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "images/logo16.png",
    "32": "images/logo32.png",
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "default_locale": "en",
  "manifest_version": 3,
  "content_security_policy": {
    "extension_pages": "default-src 'self'; connect-src https://* http://* http://*:* https://*:* data: blob: filesystem:;"
  }
}