My Hours Time tracker

My Hours Time tracker

Track time without the need for opening another tab. Start timer or enter time manually right from the browser extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "My Hours Time Tracker",
  "version": "1.4.4",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "48.0"
    }
  },
  "description": "My Hours Time Tracker",
  "browser_action": {
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.clickup.com/*",
        "https://app.asana.com/*",
        "https://*.monday.com/*",
        "https://*.basecamp.com/*"
      ],
      "js": [
        "/jquery.min.js",
        "/select2.min.js",
        "/content.js",
        "/atlassian.js"
      ],
      "css": [
        "/select2.min.css",
        "/style.css",
        "/style2.css"
      ]
    }
  ],
  "icons": {
    "16": "mh_logo_128_gray.png",
    "48": "mh_logo_128_gray.png",
    "128": "mh_logo_128_gray.png"
  },
  "web_accessible_resources": [
    "mh_logo_128.png",
    "mh_logo_128_gray.png"
  ],
  "permissions": [
    "activeTab",
    "https://myhoursdevelopment-api.azurewebsites.net/*",
    "https://api2.myhours.com/*",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}