twitter - replacing fake JS links with real ones

Replaces fake JavaScript links to quoted tweets with real links which can be opened by middle-click in Firefox.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        twitter - replacing fake JS links with real ones
// @namespace   monnef.tk
// @description Replaces fake JavaScript links to quoted tweets with real links which can be opened by middle-click in Firefox.
// @include     https://twitter.com/*
// @version     2
// @grant       none
// @require     http://code.jquery.com/jquery-2.1.4.min.js
// ==/UserScript==

this.$ = this.jQuery = jQuery.noConflict(true);

var fixedClass = "alreadyFixed";

var getCurrentMillis = function(){return new Date().getTime();};

var fixQuotedTweets = function() {
  var start = getCurrentMillis();
  $(".QuoteTweet-container:not(." + fixedClass + ")").each(function(){
    var elem = $(this);
    var link = elem.find(".QuoteTweet-innerContainer").attr("href");
    elem.wrap($("<a/>").attr("href", link));
    elem.addClass(fixedClass);
  });
  var end = getCurrentMillis();
  var elapsed = end - start;
  //console.log("Processing of quoted tweets took " + elapsed + "ms.");
};

setInterval(fixQuotedTweets, 1000);