Make Current Run Button stick to top - gamesdonequick.com

28/05/2023, 20:06:05

  1. // ==UserScript==
  2. // @name Make Current Run Button stick to top - gamesdonequick.com
  3. // @namespace Violentmonkey Scripts
  4. // @match https://gamesdonequick.com/schedule/43
  5. // @grant none
  6. // @version 1.0
  7. // @author aJourneyman
  8. // @description 28/05/2023, 20:06:05
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. function addCss(cssString) {
  13. var head = document.getElementsByTagName('head')[0];
  14. var newCss = document.createElement('style');
  15. newCss.type = "text/css";
  16. newCss.innerHTML = cssString;
  17. head.appendChild(newCss);
  18. }
  19.  
  20. addCss("p.text-center {position: -webkit-sticky; position: sticky; top: 0; } ");
  21.