This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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);}); |