Udemy Video Playback Speed Controls

Udemy Video Playback Speed Controls

Free Easy-to-use extension to get full access to video playback speed on udemy.com. start learning at your speed :) - Zaions.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Free Easy-to-use extension to get full access to video playback speed on udemy.com. start learning at your speed :) - Zaions.com",
  "version": "8",
  "manifest_version": 3,
  "name": "Udemy Video Playback Speed Controls",
  "author": "Ahsan Mahmood <[email protected]> (https://aoneahsan.website)",
  "short_name": "Udemy Video Playback Speed Controls",
  "version_name": "1.0.8 alpha",
  "offline_enabled": true,
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon-1024.png",
    "default_title": "Created by Ahsan Mahmood @ Zaions.com <[email protected]>"
  },
  "icons": {
    "128": "icon-1024.png"
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.udemy.com/*"
      ],
      "js": [
        "contentScript.bundle.js",
        "udemyUIContentScript.bundle.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icon-1024.png",
        "udemy-video-controls-extension-hot-keys.jpg",
        "assets/img/icon-1024.png"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ]
}