// ==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...
})();