Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2020
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. // ==UserScript==
  2. // @name New Userscript
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author You
  7. // @match https://ru.wikipedia.org/wiki/*
  8. // @grant all
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. document.getElementsByClassName('mw-body')[0].style.backgroundColor = 'pink';
  15. document.getElementsByClassName('mw-body')[0].style.fontSize = '30px';
  16. document.getElementsByClassName('mw-wiki-logo')[0].style.backgroundImage = "url('https://upload.wikimedia.org/wikipedia/commons/thumb/9/96/Lavrentiy_Beria_%28close-up%29.jpg/200px-Lavrentiy_Beria_%28close-up%29.jpg')";
  17. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement