/* http://greasemonkey.mozdev.org */

// ==UserScript==
// @name            Show permalinks
// @namespace       http://akkartik.name/greasemonkey
// @description     If a page has invisible permalinks, make them visible.
// @include         http*.htm*
// @include         http*imdb*/quotes*
// @include         http*joelonsoftware*
// ==/UserScript==

(function() {
    var h = document.body.innerHTML;
    document.body.innerHTML = h.replace(/<a name="([^>]*)">\s*<\/a>/g, '<a style="text-decoration: none; color: #c8a8ff;" href="#$1" name="$1">#</a>');
})();
