// ==UserScript== // @name To Translate // @Autor Igor Thiago // @include http*orkut.com/* // @Description Traduz PT_EN ou EN_PT usando o Babel Fish (Alta Vista) // @exclude *.js // ==/UserScript== // =========================================================================================== // // Inicio do script (falta do que fazer eh foda neh ?) // // =========================================================================================== //setTimeout eu coloquei soh por frescura setTimeout(function(){ // Funcao responsavel por enviar o 'formulario' para o Babel Fish var translate = function(){ // Selecao de idioma bem frajuta a = confirm('Escolha:\n\nOK \npara Traduzir de Portugues para Ingles\n' + '\n\n\n\nCancelar \npara Traduzir de Ingles para Portugues' ) if(a == true) { lingua = 'pt_en' ; coelho = 'Digite a palavra a ser Traduzida\n\nde Portugues para Ingles' } else if(a == false) { lingua = 'en_pt' ; coelho = 'Type the word to be translated\n\nof English for Portuguese' } trans = prompt(coelho,'') // trans != null =-> Nao prossegue caso o prompt seja fechado ou cancelado if(trans != null){ document.body.appendChild(open) a=document.forms[0] a.target='open' // o action ta em bs64 por viadisse a.action=atob('aHR0cDovL2JhYmVsZmlzaC5hbHRhdmlzdGEuY29tL3RyP2RvaXQ9ZG9uZSZpbnRsPTEmdHQ9dXJsdGV4dCZ0cnRleHQ9') + trans + atob('JmxwPQ==') + lingua + atob('JmJ0blRyVHh0PVRyYWR1emly') a.method='post' a.submit() document.body.appendChild(close) } } // funcao que remove o iframe e o botao var close_iframe = function(){ document.body.removeChild(open) document.body.removeChild(close) } // Cria o iframe var open = document.createElement('iframe') open . setAttribute('name','open') open . setAttribute('id' ,'open') open . style . cssText = 'position: absolute; width: 518px; height: 475px; z-index: 1; left: 4px; top: 2px;border: 1px solid black; overflow: hidden' // Cria o botao var close = document.createElement('input') close . type = 'button' close . value = 'Close' close . style . cssText = 'position: absolute; width: 420px; left: 50px; top: 480px; color: red' close . addEventListener('click',function(){close_iframe()},true) // Cria o link var link = document.createElement('a') link . innerHTML = 'Translate!' link . addEventListener('click',function(){translate()},true) var local = headerMenu local . innerHTML += ' | ' local . appendChild(link) },300) // =========================================================================================== // // // // // Fim do script (percebe-se neh?) // // // // // // Como ultimo comentario, // // eu me pergunto, pq eu comentei essa merda de script ? // // // // // // ===========================================================================================