Con el bookmarklet de hoy vamos a averiguar cuándo se modificó una página web por última vez. Para ello, copia y pega este código en la barra de direcciones de tu navegador y da al Enter.
javascript:alert(document.lastModified);
Fuente: Super Top
BOOKMARKLET PARA REDIMENSIONAR LA VENTANA DEL NAVEGADOR
Con el bookmarklet de hoy vamos a conseguir redimensionar la ventana del navegador al tamaño que queramos. Para ello, copia y pega este código en la barra de direcciones de tu navegador y da al Enter. El primer número es el ancho de la ventana (en el ejemplo es 800) y el segundo el largo (en este caso 600).
javascript:window.resizeTo(800,600);
Fuente: Punto Geek
BOOKMARKLET PARA ENVIAR CORREOS
¿Cansado de tener que copiar y pegar la dirección de una web para enviar un mensaje?. Con este bookmarklet dejarás de hacerlo. Para ello, copia y pega este código en la barra de direcciones de tu navegador y da al Enter.
javascript:location.href='mailto:?SUBJECT='+document.title+'&BODY='+escape(location.href);
Fuente: Tech-Recipes
BOOKMARKLET PARA IR HACIA ATRÁS Y ADELANTE EN DIRECCIONES NUMERADAS
En muchísimas páginas la URL o dirección sigue un patrón de números, bien sea por fecha o por otra historia. Con estos bookmarklet podrás ir un post para atrás o adelante. Para ello, copia y pega este código en la barra de direcciones de tu navegador y da al Enter.
Incrementar:
javascript:(function(){%20var%20e,s;%20IB=1;%20function%20isDigit(c)%20{%20return%20(%220%22%20<=%20c%20&&%20c%20<=%20%229%22)%20}%20L%20=%20location.href;%20LL%20=%20L.length;%20for%20(e=LL-1;%20e>=0;%20--e)%20if%20(isDigit(L.charAt(e)))%20{%20for(s=e-1;%20s>=0;%20--s)%20if%20(!isDigit(L.charAt(s)))%20break;%20break;%20}%20++s;%20if%20(e<0)%20return;%20oldNum%20=%20L.substring(s,e+1);%20newNum%20=%20%22%22%20+%20(parseInt(oldNum,10)%20+%20IB);%20while%20(newNum.length%20<%20oldNum.length)%20newNum%20=%20%220%22%20+%20newNum;%20location.href%20=%20L.substring(0,s)%20+%20newNum%20+%20L.slice(e+1);%20})();
Disminuir
javascript:(function(){%20var%20e,s;%20IB=-1;%20function%20isDigit(c)%20{%20return%20(%220%22%20<=%20c%20&&%20c%20<=%20%229%22)%20}%20L%20=%20location.href;%20LL%20=%20L.length;%20for%20(e=LL-1;%20e>=0;%20--e)%20if%20(isDigit(L.charAt(e)))%20{%20for(s=e-1;%20s>=0;%20--s)%20if%20(!isDigit(L.charAt(s)))%20break;%20break;%20}%20++s;%20if%20(e<0)%20return;%20oldNum%20=%20L.substring(s,e+1);%20newNum%20=%20%22%22%20+%20(parseInt(oldNum,10)%20+%20IB);%20while%20(newNum.length%20<%20oldNum.length)%20newNum%20=%20%220%22%20+%20newNum;%20location.href%20=%20L.substring(0,s)%20+%20newNum%20+%20L.slice(e+1);%20})();
Fuente: blogoff
BOOKMARKLET PARA ACTIVAR EL BOTÓN SECUNDARIO DEL RATÓN EN PÁGINAS WEBS DONDE ESTÉ BLOQUEADO
Muchas webs bloquean el botón secundario del ratón. Para activarlo, copia y pega este código en la barra de direcciones de tu navegador y da al Enter. Con ello el botón derecho volverá a funcionar.
javascript:void(document.oncontextmenu=null)
javascript:void(document.onmousedown=null);javascript:void(window.onmousedown=null)
Fuente: blogoff
Fuente tecno-net.blogspot.com
No hay comentarios:
Publicar un comentario