HEDCO timesheet utility

HEDCO timesheet utility

A utility to manage your daily activities

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "HEDCO timesheet utility",
  "short_name": "HEDCO timesheet utility",
  "offline_enabled": true,
  "description": "A utility to manage your daily activities",
  "version": "1.0.0",
  "content_scripts": [
    {
      "matches": [
        "*://new.hedcoint.com/projects/sitepages/timesheet/*"
      ],
      "js": [
        "timesheetScript/timesheet.js"
      ],
      "css": [
        "timesheetScript/timesheet.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/hedco_48.png",
    "default_popup": "index.html",
    "default_title": "HEDCO timesheet utility"
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    "timesheet.html"
  ],
  "icons": {
    "16": "img/hedco_16.png",
    "128": "img/hedco_128.png"
  }
}