A Chrome extension that allows you to skip ahead in Edpuzzle videos.
A Chrome extension that allows you to skip ahead in Edpuzzle videos.
developer mode
load unpacked
and select the unzipped folderYou 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.
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.
app.js
file. It should have a name matching the wildcard: ‘://assets.edpuzzle.com/app/app.js’Before:
{
key: "getMaxSkipAhead",
value: function () {
return this.maxSkipAhead
},
},
After:
{
key: "getMaxSkipAhead",
value: function () {
return this.videoDuration
},
},