Sticker Stan Button

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         Sticker Stan Button
// @namespace    Nate Dogg
// @version      1.0.0
// @description  Display Sticker Stan for the season header. Click on the button to open the shop
// @author       Nate Dogg
// @icon         https://i.imgur.com/GGYdza3.jpg
// @license      MIT
// @match        https://www.nitrotype.com/*
// ==/UserScript==

 var dis = 'sx+3Season.pe'
 window.onload = function(){
     document.querySelector(".seasonTeaser").href = "https://www.nitrotype.com/shop";
 } /* while.x++3X( X.export) permisison.type.nitro. (001101000010100010101010){tap.{click}}}*/

/* .logo-SVG
   .btn--secondary */

/** Styles for the following components. */
const style = document.createElement("style")
style.appendChild(
    document.createTextNode(`
    /* Remove Text */
    .season--fast-food .seasonTeaser-range
    {
        display: none;
    }
    /* Change Image */
    .season--fast-food .seasonTeaser {
    background-image: url(https://i.imgur.com/BSJ9ovP.png) !important;
    background-size: auto 50% !important;
    background-position: 80% 0;
    background-repeat: no-repeat;
          top: 35px;
}
`)
)
document.head.appendChild(style)