Terumi / Background

// ==UserScript==
// @name Background
// @description Top and Down buttons everywhere (no Jquery)
// @version 1.6
// @author Max Max
// @license MIT
// @include *
// @require https://code.jquery.com/jquery-3.3.1.min.js
// @grant        none
// ==/UserScript==
var images = 'https://dl.dropboxusercontent.com/s/imdivragthazddl/background-mobile.jpg';

var style = [
    '<style>'
    , 'html { background: url(https://dl.dropboxusercontent.com/s/imdivragthazddl/background-mobile.jpg) no-repeat center center fixed !important; background-size: cover !important; }'
    , '* { background-color: #0000000d !important; color: white !important; }'
    , '</style>'
].join('')

$('head').append(style)