phtest

for videos issues on slow devices

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        phtest
// @namespace   https://sleazyfork.org/fr/users/60332-maxime
// @include     http://www.pornhub.com/*
// @description for videos issues on slow devices
// @version     1
// @grant       GM_openInTab
// @require     http://code.jquery.com/jquery-2.1.4.min.js
// @run-at      document-end
// @noframes
// ==/UserScript==
$(document).delegate("*","click",function(){
  var link = $(this).attr('href');
  //alert(link);
  if (link.indexOf("view_video.php?viewkey=") >= 0) {
    var regex = /view_video\.php\?viewkey=/;
    link = link.replace(regex, "embed/");
    GM_openInTab (link);
    return false;
  } 
});