Send To Maxel

Send To Maxel

Add files to Maxel (Mac OS X Download Manager) directly from Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Send To Maxel",
  "description": "Add files to Maxel (Mac OS X Download Manager) directly from Chrome.",
  "version": "2.0",
  "permissions": [
    "tabs",
    "contextMenus",
    "downloads",
    "http://*/*",
    "https://*/*",
    "storage"
  ],
  "background": {
    "scripts": [
      "js/lib.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "js": [
        "js/lib.js",
        "js/content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "19": "img/action_icon_19.png",
      "38": "img/action_icon_38.png"
    },
    "default_title": "Download To Maxel",
    "default_popup": "html/popup.html"
  },
  "icons": {
    "16": "img/icon_16x16.png",
    "128": "img/icon_128x128.png"
  },
  "web_accessible_resources": [
    "img/*.png",
    "js/*.js",
    "html/popup.html"
  ]
}