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.

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

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