Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. // @match *://*/*
  2.  
  3. // ==UserScript==
  4. // @name Hide Buttons
  5. // @namespace http://tampermonkey.net/
  6. // @version 0.1
  7. // @description Test script
  8. // @author Greedo
  9. // @match *://*/*
  10. // @grant none
  11. // ==/UserScript==
  12. (function(window, chrome){
  13. "use strict";
  14. var doc = window.document;
  15. doc.getElementById("mv-tiles").style.opacity = "0";
  16. doc.getElementById("f").style.opacity = "0.1";
  17. }(window, chrome));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement