Nifty Shift

Nifty Shift

This extension grabs your schedule and makes calendar events out of them

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Nifty Shift",
  "description": "This extension grabs your schedule and makes calendar events out of them",
  "version": "0.4",
  "icons": {
    "128": "calendar-128.png"
  },
  "page_action": {
    "default_icon": "calendar-128.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://sc-apps-new.rutgers.edu/portal/scheduling/mine/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "permissions": [
    "http://sc-apps-new.rutgers.edu/portal/scheduling/mine/",
    "tabs",
    "downloads"
  ]
}