Top-News

Top-News Button

  1. // ==UserScript==
  2. // @name Top-News
  3. // @include http://fussballcup.de/*
  4. // @version 0.1
  5. // @description Top-News Button
  6. // @copyright mot33, 2016
  7. // @namespace https://greasyfork.org/users/83290
  8. // ==/UserScript==
  9.  
  10. window.setTimeout(function() { changes() }, 2500);
  11. window.setInterval(function() { changes() }, 5000);
  12. function changes()
  13. {
  14. if(!document.getElementById("top-news"))
  15. {
  16. var topnews = document.getElementsByClassName("button")[0].firstElementChild.getAttribute("href");
  17. document.getElementsByClassName("blog-image")[0].innerHTML += "<b style='position:absolute;bottom:8px;'>"+"<a href='#/index.php?w=301&area=user&module=press&action=topnews&squad=" + "' class='button' id='top-news'><span>T-News</span></b></a>";
  18. }
  19. }