自动更换简约导航背景

自动更换为bing每日一图

// ==UserScript==
// @name         自动更换简约导航背景
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  自动更换为bing每日一图
// @author       Kndy666
// @match        https://www.jianavi.com
// @requir       http://libs.baidu.com/jquery/2.1.4/jquery.min.js
// @grant        none
// ==/UserScript==

$(document).ready(function () {
        document.body.style.backgroundImage="url(https://bing.ioliu.cn/v1?w=" + window.screen.width + "&h=" + window.screen.height + ")";
    });