udemy time tracker

udemy time tracker

Udemy Time Tracker For Tracking the time spent in watching videos on udemy

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "udemy time tracker",
  "version": "1",
  "manifest_version": 2,
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.udemy.com/*"
      ],
      "js": [
        "contentscript.js"
      ]
    }
  ]
}