Trello Background

Automatically Sets Trello Background Image

当前为 2015-10-29 提交的版本,查看 最新版本

// ==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')";
}