ClockAssist Web

ClockAssist Web

Chrome-client voor het ClockAssist-platform voor automatische urenregistratie.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ClockAssist Web",
  "description": "Chrome-client voor het ClockAssist-platform voor automatische urenregistratie.",
  "version": "1.0.4",
  "browser_specific_settings": {
    "gecko": {
      "update_url": "https://www.clockassist.com/installed/firefox/status.json"
    }
  },
  "browser_action": {},
  "permissions": [
    "activeTab",
    "tabs",
    "storage"
  ],
  "icons": {
    "128": "icon128.png"
  },
  "web_accessible_resources": [
    "icon128.png"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": false,
      "js": [
        "jquery.js",
        "content.js",
        "charts.js",
        "loader.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "jquery.js",
      "background.js"
    ],
    "persistent": true
  }
}