这Twitter 搜索小部件在互联网上随处可见。动画让我很烦。报纸认为把这个 Twitter 小部件放在文章旁边很酷,但动画分散了我阅读文章的注意力。它和那些该死的闪烁的 flash 横幅一样糟糕,只是没有声音。
有没有办法禁用/阻止这些小部件?停止动画就足够了。
我正在使用火狐。
答案1
答案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();
});
}
})();