phtest

for videos issues on slow devices

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

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