Udemy Permanent Progress Bar

Udemy Permanent Progress Bar

Chrome extension that displays a permanent progress bar underneath the video player

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Udemy Permanent Progress Bar",
  "version": "1.0.1",
  "description": "Chrome extension that displays a permanent progress bar underneath the video player",
  "author": "Diego de Blas Mateo",
  "action": {
    "default_icon": "udemy-permanent-progress-bar-icon-16x16.png"
  },
  "icons": {
    "16": "udemy-permanent-progress-bar-icon-16x16.png",
    "48": "udemy-permanent-progress-bar-icon-48x48.png",
    "128": "udemy-permanent-progress-bar-icon-128x128.png"
  },
  "content_scripts": [
    {
      "js": [
        "app.js"
      ],
      "matches": [
        "https://www.udemy.com/course/*/learn/*"
      ]
    }
  ]
}