Coursera to Calendar

Coursera to Calendar

This extension adds Coursera deadlines to the google calendar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Coursera to Calendar",
  "version": "0.2",
  "description": "This extension adds Coursera deadlines to the google calendar.",
  "icons": {
    "128": "icon_128.png",
    "512": "icon_512.png"
  },
  "browser_action": {
    "default_icon": "icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.coursera.org/*/home/assignments"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "author": "River Liu",
  "devtools_page": "https://github.com/river34/coursera-to-calendar",
  "homepage_url": "https://github.com/river34/coursera-to-calendar"
}