HERO Timesheet

HERO Timesheet

Log Timesheet Like a HERO

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "HERO Timesheet",
  "version": "1.4.7",
  "description": "Log Timesheet Like a HERO",
  "permissions": [
    "storage",
    "notifications"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": {
      "16": "images/icon16.png",
      "24": "images/icon24.png",
      "32": "images/icon32.png"
    },
    "default_title": "Log Timesheet Like a HERO"
  },
  "icons": {
    "16": "images/get_started16.png",
    "32": "images/get_started32.png",
    "48": "images/get_started48.png",
    "128": "images/get_started128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://people.smartosc.com/*",
        "https://people.zoho.com/*"
      ],
      "css": [
        "css/styles.css",
        "css/datatables.css"
      ],
      "js": [
        "js/jquery-3.6.0.min.js",
        "js/jquery.cookie.js",
        "js/datatables.min.js",
        "js/dataTables.bootstrap.min.js",
        "js/contentScript.min.js"
      ],
      "all_frames": false
    }
  ],
  "options_page": "options.html",
  "manifest_version": 2,
  "web_accessible_resources": [
    "images/momo.png",
    "options.html"
  ]
}