Enhanced OpenAir Timesheets

Enhanced OpenAir Timesheets

Improves the interface for OpenAir Timesheets.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Enhanced OpenAir Timesheets",
  "version": "0.13",
  "manifest_version": 2,
  "description": "Improves the interface for OpenAir Timesheets.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "https://www.openair.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.openair.com/*"
      ],
      "css": [
        "lib/bootstrap/css/bootstrap.min.css",
        "lib/chosen/chosen.css",
        "css/timesheets.css",
        "css/enhancements.css"
      ],
      "js": [
        "lib/jquery-1.8.3.min.js",
        "lib/chosen/chosen.jquery.min.js",
        "lib/bootstrap/js/bootstrap.min.js",
        "js/bootstrapify.js"
      ]
    },
    {
      "matches": [
        "https://www.openair.com/timesheet.pl*"
      ],
      "js": [
        "js/timesheets.js",
        "js/entries.js"
      ]
    },
    {
      "matches": [
        "https://www.openair.com/mycalendar.pl*"
      ],
      "js": [
        "js/calendar.js"
      ],
      "css": [
        "lib/bootstrap/css/bootstrap.min.css",
        "css/calendar.css"
      ]
    }
  ],
  "options_page": "options.html",
  "background": {
    "scripts": [
      "js/getOptions.js"
    ],
    "persistent": false
  }
}