v2ex去除背景图

v2ex背景图片去除,并且把背景色改为白色

// ==UserScript==
// @name         v2ex去除背景图
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  v2ex背景图片去除,并且把背景色改为白色
// @author       r
// @match        https://www.v2ex.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    document.querySelector('#Wrapper').style.backgroundImage="url(..)"
    document.querySelector('#Wrapper').style.backgroundColor='#fff'
})();