Automatically Sets Trello Background Image
当前为
// ==UserScript==
// @name Trello Background
// @namespace None
// @version 0.2
// @description Automatically Sets Trello Background Image
// @author Shakil Shahadat
// @include https://trello.com/b/*
// @grant none
// ==/UserScript==
window.onload = function ()
{
document.body.style.backgroundImage = "url('https://img1.mxstatic.com/wallpapers/909f6f83b88148324e6b4c174eeaeb15_large.jpeg')";
}