Trello Background

Automatically Sets Trello Background Image

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

  1. // ==UserScript==
  2. // @name Trello Background
  3. // @namespace None
  4. // @version 0.2
  5. // @description Automatically Sets Trello Background Image
  6. // @author Shakil Shahadat
  7. // @include https://trello.com/b/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. window.onload = function ()
  12. {
  13. document.body.style.backgroundImage = "url('https://img1.mxstatic.com/wallpapers/909f6f83b88148324e6b4c174eeaeb15_large.jpeg')";
  14. }