Advertisement
n0l0cale

Untitled

Feb 9th, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         openhab2-screensaver
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.1
  5. // @description  try to take over the world!
  6. // @author       You
  7. // @match        https://community.openhab.org/*
  8. // @require      http://code.jquery.com/jquery-latest.min.js
  9. // @grant        none
  10. // @run-at      document-idle
  11. // ==/UserScript==
  12.  
  13. (function() {
  14.     'use strict';
  15.  
  16.     $('body').css("background-image", "url(https://www.openhab.org/assets/images/openhab-logo-square.png)");
  17.     $('.title').css("display", "none");
  18.  
  19. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement