Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Gab.ai background changer
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Changes gab.ai background. Edit url for your own image.
  6. // @author You
  7. // @match https://gab.ai/home
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. document.body.style.backgroundImage = 'url(https://i.imgur.com/I13xFOe.png)';
  15. document.body.style.backgroundAttachment = "fixed";
  16. document.body.style.backgroundPosition = "center";
  17.  
  18. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement