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 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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==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;
  } 
});