Tias adlı üyeden alıntı: mesajı görüntüle
hayır youtube videolarını çalıştırmıyor eklenti.Oysa youtube-proxy.php diye bi dosya var içinde
ohooo bu kodlar benim aylar önce kullandığım php kodu hatta onuda yıllar önce parseranın yaptığı javascript kodundan üretmiştim tunnel ler algoritma değişeli çok oldu işe yaramaz bu eklenti tr lokasyonda
        var $PROXIES = array(
                        "http://ktunnel.com",
                        "http://ltunnel.com",
                        "http://safeforwork.net",
                        "http://ctunnel.com",
                        "http://apbiology.info",
                        "http://unblock8e6.com",
                        "http://polysolve.com",
                        "http://ktunnel.net",
                        "http://dtunnel.com",
                        "http://ztunnel.com"
                       );
function decrypt($encrypted = '') {
            $dst = ""; 
            $len = strlen($encrypted); 
            
            if ($len > 0) { 
                for ($ctr = 0; $ctr < $len ; $ctr++) { 
                    $b = ord(substr($encrypted, $ctr, 1));
                    
                    if ((($b > 64) && ($b < 78)) || (($b > 96) && ($b < 110))) {
                        $b = $b + 13;
                    } else {
                        if ((($b > 77) && ($b < 91)) || (($b > 109) && ($b < 123))) {
                            $b = $b - 13;
                        }
                    }
                    
                    $t = chr($b);
                    $dst .= $t;
                } 
            }
            
            return $dst;
        }