ExOldButtons

Restore legacy buttons for E/Ex

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         ExOldButtons
// @author       Hauffen
// @description  Restore legacy buttons for E/Ex
// @version      1.0
// @include      /https?:\/\/(e-|ex)hentai\.org\/.*/
// @require      https://code.jquery.com/jquery-3.3.1.min.js
// @namespace https://greasyfork.org/users/285675
// ==/UserScript==

(function() {
    var s = `<style>.ct2 {
    background-image: url(https://ehgt.org/g/c/doujinshi.png) !important;
    background-repeat:no-repeat;
}

.ct3 {
    background-image: url(https://ehgt.org/g/c/manga.png) !important;
    background-repeat:no-repeat;
}

.ct4 {
    background-image: url(https://ehgt.org/g/c/artistcg.png) !important;
    background-repeat:no-repeat;
}

.ct5 {
    background-image: url(https://ehgt.org/g/c/gamecg.png) !important;
    background-repeat:no-repeat;
}

.cta {
    background-image: url(https://ehgt.org/g/c/western.png) !important;
    background-repeat:no-repeat;
}

.ct9 {
    background-image: url(https://ehgt.org/g/c/non-h.png) !important;
    background-repeat:no-repeat;
}

.ct6 {
    background-image: url(https://ehgt.org/g/c/imageset.png) !important;
    background-repeat:no-repeat;
}

.ct7 {
    background-image: url(https://ehgt.org/g/c/cosplay.png) !important;
    background-repeat:no-repeat;
}

.ct8 {
    background-image: url(https://ehgt.org/g/c/asianporn.png) !important;
    background-repeat:no-repeat;
}

.ct1 {
    background-image: url(https://ehgt.org/g/c/misc.png) !important;
    background-repeat:no-repeat;
}

.cs {
    color: transparent !important;
    border-radius: 10px !important;
    text-shadow:none !important;
}

.cn {
    height: 20px !important;
    width: 98px !important;
    color: transparent !important;
    border-radius:10px !important;
    text-shadow:none !important;
}

.gl5t>div:nth-child(1)>div:nth-child(1) {
    width:98px;
    background-repeat:no-repeat;
}</style>`;

    $(s).appendTo("head");
})();