1
a1b2c3T 247 天前
这个怎么感觉像是随机的
|
2
lichao 247 天前
你的个人设置里,可以设置自定义 CSS
|
4
crocoBaby 247 天前
分类的吧,招聘帖必定黄色
|
5
theprimone 247 天前
@lichao #2 才知道还有这功能 😂
|
6
theprimone 247 天前
@ErZhou #3 OP 分享一下现在的样式?
|
7
v21984 247 天前
有些主题节点是吧
|
8
sdjl 247 天前 1
别问,一问就是蓝色的
|
9
xiri 247 天前 via Android
帖子的背景是特定节点设置的,有些节点就是不一样,自定义 CSS 应该影响不到其他人看帖子的效果
|
12
me1ons 247 天前
// ==UserScript==
// @name V2EX 去除背景 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match *://v2ex.com/* // @match *://*.v2ex.com/* // @match *://www.sov2ex.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=v2ex.com // @grant none // ==/UserScript== (function() { 'use strict'; document.querySelector('#Wrapper').style.backgroundImage="url(..)" document.querySelector('#Wrapper').style.backgroundColor='#f5f5f5' // Your code here... })(); |
13
PerFectTime 247 天前 2
与节点有关系
如果想去掉,可以在右上角设置->自定义 CSS 中填入下面的内容: /*去除背景*/ #Wrapper{background-color:#E2E2E2!important;background-image:none!important} |
14
shzbkzo 247 天前 1
|
15
ErZhou OP 谢谢大家, 已经设置好了
|