rec-tube

Script to unblock rec-tube.com by zarath0stra

이 스크립트는 직접 설치해서 쓰는 게 아닙니다. 다른 스크립트가 메타 명령 // @require https://update.sleazyfork.org/scripts/18966/120805/rec-tube.js(으)로 포함하여 쓰는 라이브러리입니다.

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name rec-tube
// @match rec-tube.com/*
// @run-at document-end
// @grant none
// @require https://code.jquery.com/jquery-2.2.3.min.js
// ==/UserScript== 
start();

function start() {
 $('a[href^="/watch"]').each(function(i, n) {
  var glory = $(".images-rotation", n).data("images");
  if(!glory) return;
  var hole = glory[0].substring(8, glory[0].length - 6);

  $(n).parent().trigger('imageRotationRemove');
  $(n).attr("href", "/file/" + btoa(hole) + "/");
 }); 
}