Skip to content

Instantly share code, notes, and snippets.

// ==UserScript==
// @name Plone Show All
// @namespace http://plone.org
// @description Forces folder_contents view to always show all content as opposed to batching.
// @include http://*advancedaquarist.com/*
// @include http://*reefs.org/*
// @include http://*aquaristcourses.org/*
// ==/UserScript==
h = window.location.href;
@sgraber
sgraber / gist:842930
Created February 24, 2011 21:33
Reddit Bookmarklet to Add URLs to Links in Pages Before Printing
// Reddit Bookmarklet to Add URLs to Links in Pages Before Printing
// Add to your bookmark bar and click on it on any Reddit page and hyperlinks will have their
// URLs added right below the link. Nice for printing!
javascript:var x=$(".content").find("div.md a").each(function(){var href= (this).attr("href");$(this).after("<br \/>"+href);});