Friendly SongMeanings

By Logan Koester Last update Jul 14, 2007 — Installed 172 times.
// ==UserScript==
// @name           Friendly SongMeanings
// @namespace      http://logankoester.com
// @description    Redirects lyrics pages on songmeanings.net to their printer friendly format.
// @include        http://www.songmeanings.net/lyric.php?lid=*
// ==/UserScript==

url = window.location.href;
if (url.search("&action=printerfriendly") == -1) {
  var target = url + "&action=printerfriendly";
  var target = target.replace("lid", "id"); // PHP programmers do silly things
  window.location.href = window.location.href = target;
}