Lunar Client Linux Adder

add back linux tab!!

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         Lunar Client Linux Adder
// @namespace    lolwhenlifegivesyoulemons
// @version      0.1
// @description  add back linux tab!!
// @author       You
// @match        https://www.lunarclient.com/download/
// @grant        none
// ==/UserScript==

document.querySelector(".row").innerHTML += (`<div class="col-12 col-md-6 col-lg-4 mb-3">
		<div class="card download-card p-3">
		  <h2 class="card-title">
			<i class="fab fa-linux" aria-hidden="true"></i>
			Linux
		  </h2>
		  <a type="button" class="btn thing1 thing2" href="https://api.lunarclient.com/site/download/linux">
			<i class="fas fa-download" aria-hidden="true"></i>
			DOWNLOAD
		  </a>
		  <p class="card-text pt-3">Distributed as an <a href="https://appimage.org">AppImage</a>.</p>
		</div>
	  </div>`)