test
当前为
// ==UserScript==
// @name Translator
// @namespace http://scriptz.de.to/
// @description test
// @include http://*/*
// @include https://*/*
// @match https://dl.dropbox.com/sh/lhwq0z0zmwvcnrt/*/*
// @author Scriptz
// @version 3.5
// @copyright 2013+ , Scriptz
// ==/UserScript==
// ==Profile==
unsafeWindow.translate = function(){
window.location="http://translate.google.com/translate?sl=auto&u="+window.location
}
// ==============
// ==Key==
document.onkeydown= openPage ;
function openPage(e) {
e= window.event ? event : e;
if (e.keyCode == 113 ) { location.href="javascript:translate()" ; }
}
// ==============