如何阻止烦人的Twitter搜索小部件


3

这个推特搜索窗口小部件正在互联网上弹出。动画让我很烦。报纸认为将Twitter微件放在文章旁边会很酷,但是动画使我无法阅读文章。就像那些该死的闪烁的横幅一样糟糕,只是没有声音。

有没有办法禁用/阻止那些小部件?停止动画就足够了。

我正在使用Firefox。

Answers:



3

安装GreaseMonkey并安装我为您编写的此脚本,这是源代码

// ==UserScript==
// @name          Remove the Twitter Widget.
// @description   This will remove the Twitter Widget, everywhere.
// ==/UserScript==

(function(){
  var script = document.createElement("script");
  script.textContent = "(" + twremoval.toString() + ")();";
  document.body.appendChild(script);

  function twremoval() {
    $(function() {
      $("div.twtr-doc").remove();
    });
  }
})();

谢谢,工作就像一种魅力。请在答案中包含源代码,以防万一您的服务器出现故障。
lesmana
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.