Edpuzzle Skip

Logo

A Chrome extension that allows you to skip ahead in Edpuzzle videos.

View the Project on GitHub maxwellmlin/edpuzzle-skip

About

A Chrome extension that allows you to skip ahead in Edpuzzle videos.

Install

  1. Download the latest release and unzip the file
  2. Go to chrome://extensions
  3. Enable developer mode
  4. Click load unpacked and select the unzipped folder

Usage

You can enable/disable the extension by clicking the extension icon.

You may need to refresh the Edpuzzle tabs and toggle the extension on/off in order for the video to become skippable.

Extension not working?

Please open a new issue to let me know.

In the meantime you can try to edit Edpuzzle’s app.js file manually with Chrome Developer Tools’s Local Overrides.

  1. Open Chrome DevTools in the Edpuzzle
  2. In the Sources/Overrides panel, select a new folder as an override
  3. In the Sources/Page panel, find the app.js file. It should have a name matching the wildcard: ‘://assets.edpuzzle.com/app/app.js’
  4. Modify this file using the guide below. It may help to open an external editor and format the minified source file

Before:

{
  key: "getMaxSkipAhead",
  value: function () {
    return this.maxSkipAhead
  },
},

After:

{
  key: "getMaxSkipAhead",
  value: function () {
    return this.videoDuration
  },
},