Duty Scheduler

Duty Scheduler

Prototype for automatically scheduling Duty Schedules

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Duty Scheduler",
  "description": "Prototype for automatically scheduling Duty Schedules",
  "version": "1.0",
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://doodle.com/*"
      ],
      "js": [
        "js/jquery-3.1.1.js",
        "js/parse.js",
        "js/bootstrap.min.js",
        "js/calendar.js"
      ],
      "css": [
        "css/main.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "*"
  ],
  "permissions": [
    "activeTab",
    "storage",
    "tabs"
  ]
}