• 7 Posts
  • 160 Comments
Joined 1 year ago
cake
Cake day: July 28th, 2023

help-circle
  • In June 1973, Led Zeppelin played a legendary concert at Kezar Stadium in San Francisco, where an unforgettable moment took place. As the band performed before over 50,000 fans, white doves were released during the closing of “Stairway to Heaven.” While most of the birds flew off into the crowd, one returned to the stage, landing unexpectedly on Robert Plant’s hand. The scene was striking: Plant, cigarette and drink in hand, calmly held the dove in the other, creating a serene image that contrasted with the band’s electric performance. -source

    Legendary moment from a legendary group.




  • Thank you so much. I didn’t even think about Greasemonkey. I went to make a script using your code and it said there was already one available. That script looks like this:

    Edit: Updated script

    (function() {
        'use strict';
    
        var links = document.links;
        for (var i = 0; i < links.length; i++) {
            var referer = links[i].href.indexOf('&u=');
            links[i].href = decodeURIComponent(links[i].href.substr(referer + 3));
        }
    
    })();
    
    

    and it worked fine. Then I replaced that code with yours, and it worked just as well. Thanks again.