MyCourses File Saver

MyCourses File Saver

Add buttons to save documents on MyCourses to Google Drive and Dropbox

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "MyCourses File Saver",
  "description": "Add buttons to save documents on MyCourses to Google Drive and Dropbox",
  "version": "1.2",
  "permissions": [
    "https://mycourses.rit.edu/",
    "http://mycourses.rit.edu/",
    "cookies"
  ],
  "icons": {
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mycourses.rit.edu/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/file-ops.js",
        "js/jquery-2.2.0.min.js",
        "js/dropins.js",
        "js/injector.js",
        "js/main.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  }
}