WebLearn Downloader

WebLearn Downloader

Download selected files

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "0.0.1.1",
  "manifest_version": 2,
  "default_locale": "en",
  "description": "Download selected files",
  "background": {
    "scripts": [
      "/lib/deflate.js",
      "/lib/zip.js",
      "/lib/inflate.js",
      "/lib/z-worker.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://learn.tsinghua.edu.cn/MultiLanguage/lesson/student/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon38.png"
  },
  "permissions": [
    "downloads",
    "activeTab",
    "http://learn.tsinghua.edu.cn/MultiLanguage/*"
  ],
  "icons": {
    "128": "icon.png"
  },
  "web_accessible_resources": [
    "mycss.css"
  ]
}