OpenAir Reborn

OpenAir Reborn

OpenAir time tracking with almost no teeth pulling

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "0.0.31",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "permissions": [
    "storage",
    "tabs"
  ],
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    }
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "https://www.openair.com/timesheet.pl*"
      ],
      "css": [
        "styles/main.css",
        "bower_components/chosen/chosen.css",
        "bower_components/angular-chosen-localytics/chosen-spinner.css"
      ],
      "js": [
        "bower_components/jquery/dist/jquery.js",
        "bower_components/angular/angular.js",
        "bower_components/chosen/chosen.jquery.js",
        "scripts/markup.js",
        "scripts/timeentry.js",
        "scripts/openair.js",
        "scripts/timer.js",
        "bower_components/angular-chosen-localytics/chosen.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "views/form.html",
    "views/table.html",
    "bower_components/angular/angular.js",
    "bower_components/angular/angular.js.map",
    "bower_components/jquery/dist/jquery.js",
    "bower_components/jquery/dist/jquery.map",
    "bower_components/chosen/chosen.jquery.js",
    "bower_components/angular-chosen-localytics/chosen.js"
  ]
}