Toggl to OpenAir Timesheets

Toggl to OpenAir Timesheets

Takes time entries from Toggl and adds it to an open timesheet in OpenAir

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Toggl to OpenAir Timesheets",
  "short_name": "TogglToOpenAir",
  "author": "Gray Software Consulting",
  "version": "1.0.23",
  "description": "Takes time entries from Toggl and adds it to an open timesheet in OpenAir",
  "icons": {
    "48": "48-icon.png",
    "128": "128-icon.png"
  },
  "permissions": [
    "activeTab",
    "declarativeContent",
    "storage",
    "webNavigation",
    "https://toggl.com/",
    "https://api.track.toggl.com/"
  ],
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.openair.com/timesheet.pl*"
      ],
      "js": [
        "contentscript.js"
      ]
    }
  ],
  "page_action": {
    "default_popup": "popup.html"
  },
  "manifest_version": 2
}