NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Redirecionamento CAPES-Periódicos
// @namespace http://www.infis.ufu.br/capes-periodicos
// @description Redirecionamento CAPES Portal de Periódicos
// @version 1
// @grant none
// @include *
// ==/UserScript==
document.addEventListener('keydown', function(event) {
// 69 = e
if (event.ctrlKey && event.altKey && event.keyCode === 69) {
var url = document.location;
var pre = "http://novo.periodicos.capes.gov.br/?option=com_pezproxy&controller=auth&view=pezproxyauth&url=";
window.location.replace(pre+url);
}
});