背景图片屏蔽

屏蔽背景

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
// ==UserScript==
// @name         背景图片屏蔽
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  屏蔽背景
// @author       tai-zhou
// @match         *://*/*
// @run-at       document-start
// @grant        none
// @license      monsm
// ==/UserScript==

(function() {
    'use strict';
    document.body.style.cssText = "background-image:none!important;"
})();