ติดตั้ง Greasemonkey addon และใช้สคริปต์ที่ระบุด้านล่าง
ฉันแก้ไขสคริปต์ที่พบที่นี่http://www.netsi.dk/wordpress/index.php/2011/07/07/printing-html-pages-make-screen-and-print-appear-the-same/
ฉันเปลี่ยน "หน้าจอ" เป็น "พิมพ์" ในตอนท้าย (ฉันไม่มีความรู้เกี่ยวกับ jQuery ดังนั้นอย่าถามคำถามใด ๆ กับฉัน) เพื่อที่จะส่งเวอร์ชันหน้าจอไปยังเครื่องพิมพ์ เมื่อพิมพ์เป็น pdf (โดยใช้เครื่องพิมพ์ Foxit หรือ Nitro Pdf) ฉันตั้งประเภทหน้าเว็บเป็น Tabloid Extra ในโหมดแนวนอนดังนั้นขนาด PDF ตรงกับขนาดหน้าจอมากหรือน้อย สนุก! จำไว้ว่าฉันไม่รู้อะไรเกี่ยวกับการเขียนโปรแกรมดังนั้นเครดิตจึงไปถึงผู้เขียนต้นฉบับ
// ==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
และเลือก