uSelect iDownload

uSelect iDownload

Open or download several links at once with a simple selection.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "uSelect iDownload",
  "version": "1.9",
  "description": "__MSG_extDesc__",
  "icons": {
    "32": "res/icon32.png",
    "48": "res/icon48.png",
    "52": "res/icon52.png",
    "92": "res/icon92.png",
    "128": "res/icon128.png"
  },
  "browser_action": {
    "default_icon": "res/icon32.png",
    "default_title": "__MSG_actionTitle__"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "overlay.css"
      ],
      "js": [
        "js/shortcut.js",
        "js/content_script.js"
      ]
    }
  ],
  "default_locale": "en",
  "options_page": "options.html",
  "permissions": [
    "<all_urls>",
    "tabs",
    "storage"
  ]
}