显示无“谁关注”推特

时间:2014-02-21 19:31:26

标签: css twitter

我试图隐藏我的推特账户中的“关注谁”框。

为此,我使用名为Minimalist的Chrome扩展程序。

由于某些原因,我的CSS代码无效:

//not working
.wtf-module{
display: none;
}

//not working
.js-wtf-module{
display: none;
}

//not working
.dashboard:nth-child(2){
display: none;
}

有什么想法吗?

所有建议都非常受欢迎。

2 个答案:

答案 0 :(得分:1)

.wtf-module.has-content {display: none;}

答案 1 :(得分:1)

这适用于Firefox 27.我现在无法在Chrome中测试。

.wtf-module, .js-wtf-module {
    display: none !important;

}

您可能也会受到http://nakkaya.com/2014/01/26/pentadactyl-configuration/

中此配置的启发
@-moz-document domain("twitter.com") {
    div.module.trends{ display: none !important; }
    div.module.site-footer{ display: none !important; }
    div.module.wtf-module.js-wtf-module.has-content{ display: none !important; }
    div.global-nav{ display: none !important; }
    .wrapper.white { background: none !important;}
}