2014-02-21 71 views
0

我想隱藏我的Twitter帳戶中的「誰關注」框。顯示無「誰要關注」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; 
} 

任何想法?

所有的建議都非常歡迎。

回答

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;} 
} 
+0

謝謝!它工作得很好 – Alberto

1

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

+0

的感謝!它也工作完美 – Alberto

+0

...非常合適的名稱模塊「什麼f * k模塊」;) –