Instale el complemento Greasemonkey y use el script que se proporciona a continuación.
Modifiqué un script que encontré aquí http://www.netsi.dk/wordpress/index.php/2011/07/07/printing-html-pages-make-screen-and-print-appear-the-same/
Cambié "pantalla" a "imprimir" al final (no tengo idea sobre jQuery, así que no me haga ninguna pregunta) para que, de hecho, envíe la versión de la pantalla a la impresora. Al imprimir en pdf, (usando impresoras Foxit o Nitro Pdf), configuro el tipo de página en Tabloid Extra en modo horizontal para que el tamaño del pdf coincida más o menos con el tamaño de la pantalla. ¡Disfrutar! Recuerde, no sé nada sobre programación, por lo que el crédito va al autor original.
// ==UserScript==
// @name Show print version (A Cross Browser Example) (showPrintVersion.user.js)
// @namespace netsi
// @match http://*/*
// @author Sten Hougaard
// @description Simply add #print to the URL. As descriped in my blog post (goo.gl/MEizV) this will activate any media=print stylesheets so that you can see the print version without printing
// ==/UserScript==
// a function that loads jQuery and calls a callback function when jQuery has finished loading
function addJQuery(callback) {
var script = document.createElement("script");
script.setAttribute("src", "http://ajax.googleapis.com/ajax/libs/jquery/1.6.3/jquery.min.js");
script.addEventListener('load', function () {
var script = document.createElement("script");
script.textContent = "(" + callback.toString() + ")();";
document.body.appendChild(script);
}, false);
document.body.appendChild(script);
}
// the guts of this userscript
function main() {
var bPrint = (window.location.toString().indexOf('#print')!=-1);
if (bPrint) {
// The user wants to print this page
jQuery('link[media*="screen"]').attr('media', 'all'); // Enable the screen styling for all media types, including screen.
jQuery('link[media*="print"]').remove(); // remove any styling related to print
}
}
// load jQuery and execute the main function
addJQuery(main);
Delete This Node
.