Show direct link on protect-lien.com!
目前為
// ==UserScript==
// @name dl-protect Direct Link
// @name:fr dl-protect Direct Link
// @name:en dl-protect Direct Link
// @namespace https://www.protect-lien.com
// @version 0.1
// @description Show direct link on protect-lien.com!
// @description:fr Affiche directement le lien sur dl-protect
// @description:en Show direct link on protect-lien.com!
// @author Thibault
// @icon https://zone-telechargement.ws/templates/zone/images/favicon.ico
// @include /http(|s)://(|www\.)protect\-lien\.com/.*/
// @require http://code.jquery.com/jquery-latest.js
// @grant none
// ==/UserScript==
(function() {
$(document).ready(function() {
'use strict';
//checkh237();
if ($(".magic input")[1])
{
$(".bgSlider .Slider").attr("class","Slider ui-draggable ui-draggable-disabled ui-state-disabled");
$.post( "https://www.protect-lien.com/php/Qaptcha.jquery.php", { action : "qaptcha", qaptcha_key: $(".QapTcha input").attr("name") } );
$(".QapTcha input").val("");
{
$(".magic input")[1].click();
$("#h237").hide();
}
}
if ($(".lienet a").attr("href") != undefined)
{
$("body").html('<div style="width:100%;text-align: center;"><a href='+$(".lienet a").attr("href")+'">'+$(".lienet a").attr("href")+'</a></div>');
//alert($(".lienet a").attr("href"));
}
});
})();
function checkh237 (){
if($('#h237').is(':visible'))
{ //if the container is visible on the page
$("#h237").html('');
$("#h237").css({'display':'none','background-color':'transparent'});
} else {
setTimeout(checkh237, 100);
}
}