Hack #82. Automatically Link to Printer-Friendly Versions

Get the content without the cruft by changing selected article links to "printer-friendly" versions.

Most online news sites offer printer-friendly versions of their articles. Such pages usually contain the entire article text in one page, instead of forcing you to click through to read multiple pages. They also leave out the site's global navigation bar. They might also have fewer ads, or no ads at all.

Well, that all sounds appealing to me; why isn't that the default? This hack makes it the default, by changing links to selected news sites to point to the printer-friendly article instead.

The Code

This user script runs on all pages. It uses regular expressions to find specific patterns in link URLs and then performs site-specific alterations to change the link to point to the associated printer-friendly page instead. Of course, it works only on links to the sites it knows about, but it can easily be extended with knowledge of how other sites associate normal article pages and printer-friendly pages.

Save the following user script as bstopthepresses.user.js:

 // ==UserScript== // @name Stop The Presses! // @namespace http://diveintomark.org/projects/greasemonkey/ // @description make links point to printer-friendly versions // @include * // ==/UserScript== var urlPage = window.location.href; for (var i = document.links.length - 1; i >= 0; i--) { var elmLink = document.links[i]; var urlHref = elmLink.href; // Yahoo News if ((urlHref.match(/\/\/(story\.)?news\.yahoo\.com\//i)) ...

Get Greasemonkey Hacks now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.