Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. // ==UserScript==
  2. // @name AMQ Theme
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author You
  7. // @match https://animemusicquiz.com/?forceLogin=True
  8. // @match https://animemusicquiz.com
  9. // @grant none
  10. // ==/UserScript==
  11. (function() {
  12. 'use strict';
  13. //main menu bg
  14. document.getElementById('gameContainer').style.backgroundImage = '-webkit-image-set(url(https://files.catbox.moe/mjd25d.jpg) 1x, url(https://files.catbox.moe/mjd25d.jpg) 2x)';
  15. //lobby-game bg
  16. document.getElementById('gameChatPage').children[0].style.backgroundImage = '-webkit-image-set(url(https://files.catbox.moe/mjd25d.jpg) 1x, url(https://files.catbox.moe/mjd25d.jpg) 2x)';
  17. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement