RT 在公司的时候经常会刷刷小 V,但是同事在身后走来走去的,不想被轻易的看到头像和用户名啊,现有情况是很容易吧?有概率能解决吗
1
AlwaysBehave 2018-03-28 15:56:08 +08:00
自己写一个油猴脚本或者做一个客户端
|
2
charadeyouare 2018-03-28 15:59:54 +08:00
随便一个 ad block 插件...
|
3
sennes 2018-03-28 16:32:03 +08:00
设置支持自定义 CSS
感觉可以利用一下。 |
4
SingeeKing 2018-03-28 16:36:55 +08:00
|
5
SingeeKing 2018-03-28 16:38:09 +08:00
#Rightbar .avatar {
display: none; } 这样吧,修正误伤 |
6
vve2ex 2018-03-28 16:54:58 +08:00
@SingeeKing 厉害,第一次发现 V 站还有这功能
|
7
sennes 2018-03-28 16:57:04 +08:00
#Rightbar div:nth-child(2) div:first-child table:first-child{
display:none; } |
8
rabbbit 2018-03-28 16:58:10 +08:00
帮你伪装成别人
#Rightbar div:nth-of-type(1) table:nth-of-type(1) .bigger a{ color:#fff; } #Rightbar div:nth-of-type(1) table:nth-of-type(1) .bigger a:before{ content: "lalala"; color: #000; } #Rightbar div:nth-of-type(1) table:nth-of-type(1) td:nth-of-type(1) { position: relative; } #Rightbar div:nth-of-type(1) table:nth-of-type(1) td:nth-of-type(1):after{ position: absolute; top: 0; left: 0; content: ""; display:block; width:48px; height:48px; background: #fff url( https://cdn.v2ex.com/avatar/c8a2/3f84/173108_normal.png?m=1499501276) } |
9
sennes 2018-03-28 17:00:01 +08:00
哈哈 我好蠢 写的比较复杂 。好像 @SingeeKing #5 的就够用了。
|
10
SingeeKing 2018-03-28 17:00:20 +08:00
@rabbbit #8 😂为什么是我的头像
|
11
SingeeKing 2018-03-28 17:02:38 +08:00
|
12
rabbbit 2018-03-28 17:03:42 +08:00
@SingeeKing 看到个帅哥就随手复制了(>▽<)
|
13
SingeeKing 2018-03-28 17:05:20 +08:00
#Rightbar > div:nth-child(2) > div:nth-child(1) > table:nth-child(1) {display: none;}
好了写了个理论无误伤的 |
14
SingeeKing 2018-03-28 17:07:10 +08:00
#Top > div > div > table > tbody > tr > td:nth-child(3) > a:nth-child(2) {display: none;}
要隐藏最上边的用户名可以再加上这个 |