Integration tool for Internet Download (IDM)

Integration tool for Internet Download (IDM)

Add "Download with IDM" context menu to the file links on every page where integration is on. Good for Internet Download Manager PC

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "0.1.3",
  "browser_action": {
    "default_icon": {
      "16": "images/icons/icon16.png",
      "32": "images/icons/icon32.png"
    }
  },
  "icons": {
    "16": "images/icons/icon16.png",
    "48": "images/icons/icon48.png",
    "128": "images/icons/icon128.png"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "scripts/tracker.js",
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*",
        "file:///*"
      ],
      "run_at": "document_start"
    }
  ],
  "manifest_version": 2,
  "offline_enabled": false,
  "permissions": [
    "downloads",
    "downloads.shelf",
    "management",
    "storage",
    "proxy",
    "nativeMessaging",
    "<all_urls>",
    "cookies",
    "contextMenus",
    "webNavigation",
    "webRequest",
    "webRequestBlocking"
  ],
  "optional_permissions": [
    "notifications",
    "system.display"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.internetdownloadmanager.com/*"
    ]
  },
  "web_accessible_resources": [
    "scripts/document.js",
    "c.html",
    "scripts/c.js",
    "scripts/debug.js"
  ]
}