Internet Download Manager IDM™

Internet Download Manager IDM™

This extension allows IDM™ Internet Download Manager to take over downloads initiated from the browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "offline_enabled": true,
  "permissions": [
    "storage",
    "contextMenus",
    "notifications",
    "nativeMessaging"
  ],
  "short_name": "IDM Manager",
  "version": "1.2.4",
  "default_locale": "en_US",
  "description": "__MSG_appDesc__",
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_icon": {
      "16": "assets/16.png",
      "18": "assets/18.png",
      "19": "assets/19.png",
      "32": "assets/32.png",
      "36": "assets/36.png",
      "38": "assets/38.png",
      "48": "assets/48.png",
      "64": "assets/64.png",
      "128": "assets/128.png"
    },
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/32.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "assets/16.png",
    "18": "assets/18.png",
    "19": "assets/19.png",
    "32": "assets/32.png",
    "36": "assets/36.png",
    "38": "assets/38.png",
    "48": "assets/48.png",
    "64": "assets/64.png",
    "128": "assets/128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}