Guest User

Untitled

a guest
Dec 3rd, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. // ==UserScript==
  2. // @name mangowpis tag
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author waifu
  7. // @match http://www.wykop.pl/*
  8. // @match https://www.wykop.pl/*
  9. // @grant GM_getValue
  10. // ==/UserScript==
  11.  
  12. function doit(){
  13. b=document.getElementsByName("body")[0];
  14. b.value=b.value+"\n#mangowpis";
  15. }
  16.  
  17. (function() {
  18. m=document.getElementsByClassName("row buttons dnone")[0].children[0];
  19. var btn = document.createElement("a");
  20. btn.setAttribute("class","button");
  21. btn.setAttribute("onclick","doit()");
  22. btn.textContent="#mangowpis";
  23. m.appendChild(btn);
  24. })();
Advertisement
Add Comment
Please, Sign In to add comment