Advertisement
Guest User

Untitled

a guest
Jul 20th, 2014
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Additional menu
  3. // @namespace zx.pk.ru
  4. // @include http://zx.pk.ru/*
  5. // @include http://zx-pk.ru/*
  6. // @include http://zx-pk.ru/*
  7. // @include http://www.zx-pk.ru.*
  8. // @include http://www.zx.pk.ru/.*
  9. // @exclude */newattachment.php*
  10. // @exclude */misc.php?do=getsmilies*
  11. // @version 0.08
  12. // @grant none
  13. // ==/UserScript==
  14.  
  15. var newMenu = document.createElement("div");
  16.  
  17. newMenu.innerHTML = '<div>' +
  18. '<a href="/misc.php?do=cybstats&resultsnr=30">Последние сообщения<a> | ' +
  19. '<a href="/forumdisplay.php?do=markread"><span style="color:red">Всё прочитано</span><a>' +
  20. '</div>';
  21.  
  22. var oldMenu = document.getElementsByClassName("alt2")[0].lastChild;
  23. oldMenu.parentNode.insertBefore(newMenu, oldMenu.nextSibling);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement