Zone telechargement Direct Link

Show direct link (Uptobox,Uploaded,1fichier ...) on Zone-Telechargement and avoid dl-protect!

Versão de: 19/01/2018. Veja: a última versão.

// ==UserScript==
// @name         Zone telechargement Direct Link
// @name:en      Zone telechargement Direct Link
// @namespace    https://www.zone-telechargement1.com/
// @version      1.01
// @description  Show direct link (Uptobox,Uploaded,1fichier ...) on Zone-Telechargement and avoid dl-protect!
// @description:en  Show direct link (Uptobox,Uploaded,1fichier ...) on Zone-Telechargement and avoid dl-protect!
// @author       Thibault
// @icon https://zone-telechargement1.com/templates/zone/images/favicon.ico
// @include /http(|s)://(|www\.)zone\-telechargement1\.com/.*/
// @include /http(|s)://(|ww1\.)zone\-telechargement1\.com/.*/
// @require      http://code.jquery.com/jquery-latest.js
// @grant       none
// ==/UserScript==

(function() {
    $(document).ready(function() {
        $(".postinfo a").each(function (i)
                              {
            var $pathname = this.pathname;
            //uptobox //        123455600123455602123455610123455615
            if ($pathname.indexOf("123455600123455602123455610123455615") >=0 )
            {
                $pathname = "http://uptobox.com"+$pathname.replace("123455600123455602123455610123455615","");
            }

            //uploaded 123455600123455605123455615
            if ($pathname.indexOf("123455600123455605123455615") >=0 )
            {
                $pathname = "http://ul.to"+$pathname.replace("123455600123455605123455615","");
            }

            //turbobit // 123455600123455607123455611123455615
            if ($pathname.indexOf("123455600123455607123455611123455615") >=0 )
            {
                $pathname = "http://turbobit.net"+$pathname.replace("123455600123455607123455611123455615","");
            }

            //1fichier //123455601123455603123455610123455615123455617
            if ($pathname.indexOf("123455601123455603123455610123455615123455617") >=0 )
            {
                $pathname = "http://1fichier.com"+$pathname.replace("123455601123455603123455610123455615123455617","?");
            }

            //uplea 123455600123455609123455610123455615dl123455615
            if ($pathname.indexOf("123455600123455609123455610123455615dl123455615") >=0 )
            {
                $pathname = "http://uplea.com/dl"+$pathname.replace("123455600123455609123455610123455615dl123455615","");
            }

            //rapidgator // 123455600123455606123455611123455615file
            if ($pathname.indexOf("file123455615") >=0 )
            {
                $pathname = "http://rapidgator.net/file/"+$pathname.split("file123455615").pop();
                $pathname = $pathname.replace("123455615","/");
            }

            //Nitroflare //123455600123455608123455610123455615view123455615
            if ($pathname.indexOf("123455600123455608123455610123455615view123455615") >=0 )
            {
                $pathname = "http://nitroflare.com"+$pathname.replace("123455600123455608123455610123455615view123455615","view/");
                $pathname = $pathname.replace("123455615","/");
            }

            //Streaming //123455600123455609123455610123455615
            if ($pathname.indexOf("123455600123455609123455610123455615") >=0 )
            {
                $pathname = "http://streaming.zone-telechargement1.com"+$pathname.replace("123455600123455609123455610123455615","");
            }
            
            var $value = $(this).html();
            if ($value.indexOf("Episode") >= 0)
            {
                $value = $value+" : ";
            }
            else
            {
                $value = "";
            }
            $(this).attr("href", $pathname).html($value+$pathname);

         });
 $("div.corps > center:eq(1) strong:last").next().after('<strong><a href="http://www.allocine.fr/recherche/?q='+escape($($('div.corps div')[2]).text())+'" target="_blank"><u><span class="selection_index"></span>Allocine</u> :  Lien</a></strong><br/>');
  
    });
})();