Answers:
不知道这是否行得通,但是值得一试:适用于Firefox的Adblock Plus插件吗?
也许找到源脚本并将其添加到Adblock Plus中的阻止列表中...
另外,请确保您已禁用所有弹出式窗口...
安装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();
});
}
})();
##div.twtr-doc
。参见adblockplus.org/en/filters