I've made a greasemonkey script to automate the process, only runs on skill-capped with minimal permissions and replaces the url of the video thumbnails to the actual playable video, simply open the video in a new tab
// ==UserScript==
// @author kakar0to
// @
[Only registered and activated users can see links. Click Here To Register...] Skill Capped Videos
// @
[Only registered and activated users can see links. Click Here To Register...] 1
// @grant none
// @
[Only registered and activated users can see links. Click Here To Register...]rames
// @
[Only registered and activated users can see links. Click Here To Register...]-at document-idle
// @
[Only registered and activated users can see links. Click Here To Register...] *://*.skill-capped.com/*
// ==/UserScript==
document.querySelectorAll('.video-cover.video-tooltip').forEach(function(node, idx) {
node.href = 'http://d3qx1p4lbtwbt8.cloudfront.net/encoded/' + node.rel + '_mp4_good.mp4?e=1497022873&h=8617c10ecc420569c4b8 6%2021099f7ed61';
});