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.

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==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);