如何屏蔽烦人的 Twitter 搜索小工具

如何屏蔽烦人的 Twitter 搜索小工具

Twitter 搜索小部件在互联网上随处可见。动画让我很烦。报纸认为把这个 Twitter 小部件放在文章旁边很酷,但动画分散了我阅读文章的注意力。它和那些该死的闪烁的 flash 横幅一样糟糕,只是没有声音。

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

我正在使用火狐。

答案1

不知道这是否有效,但值得一试:广告拦截插件Firefox 的插件吗?

也许找到源脚本并将其添加到 Adblock Plus 中的阻止列表中...

另请确保已禁用所有弹出窗口...

答案2

安装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();
    });
  }
})();

相关内容