Sticker Stan Button

Display Sticker Stan for the season header. Click on the button to open the shop

  1. // ==UserScript==
  2. // @name Sticker Stan Button
  3. // @namespace Nate Dogg
  4. // @version 1.0.0
  5. // @description Display Sticker Stan for the season header. Click on the button to open the shop
  6. // @author Nate Dogg
  7. // @icon https://i.imgur.com/GGYdza3.jpg
  8. // @license MIT
  9. // @match https://www.nitrotype.com/*
  10. // ==/UserScript==
  11.  
  12. var dis = 'sx+3Season.pe'
  13. window.onload = function(){
  14. document.querySelector(".seasonTeaser").href = "https://www.nitrotype.com/shop";
  15. } /* while.x++3X( X.export) permisison.type.nitro. (001101000010100010101010){tap.{click}}}*/
  16.  
  17. /* .logo-SVG
  18. .btn--secondary */
  19.  
  20. /** Styles for the following components. */
  21. const style = document.createElement("style")
  22. style.appendChild(
  23. document.createTextNode(`
  24. /* Remove Text */
  25. .season--fast-food .seasonTeaser-range
  26. {
  27. display: none;
  28. }
  29. /* Change Image */
  30. .season--fast-food .seasonTeaser {
  31. background-image: url(https://i.imgur.com/BSJ9ovP.png) !important;
  32. background-size: auto 50% !important;
  33. background-position: 80% 0;
  34. background-repeat: no-repeat;
  35. top: 35px;
  36. }
  37. `)
  38. )
  39. document.head.appendChild(style)