Greasy Fork is available in English.

Hasten_player

突破视频观看速度以及进度条无法拖动的限制,极速完成观看任务!

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey 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 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.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

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         Hasten_player
// @namespace    Yoncms/Hxpxw
// @version      1.1
// @description  突破视频观看速度以及进度条无法拖动的限制,极速完成观看任务!
// @author       Yoncms/扬克姆斯
// @match        http://pt.hxpxw.net/els/html/courseStudyItem/courseStudyItem.learn.do*
// @icon
// @grant        none
// @license      MIT
// ==/UserScript==
 
(function() {
    'use strict';
    var
      d=document,
      k = d.querySelector('.cl-menubar'),
      Time = 2e3+2e2+2;
    k.style.background = '#e33e33';
    k.onclick = function( ){
      k.style.background = '#343434';
      var 
        p = d.querySelector('iframe').contentDocument.querySelector('video').player,
        t = p.getCurrentTime(),
        z = p.getDuration(),
        timer = setInterval(function ( ){
          (t>z+10 || new Date().getFullYear()-Time>0) && clearInterval( timer );
          p.seek( t++ );
        }, 8 );
    };
})();