EXBetterGalleryList

BetterGalleryList

اعتبارا من 27-01-2021. شاهد أحدث إصدار.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name         EXBetterGalleryList
// @namespace    https://greasyfork.org/zh-CN/users/453092
// @require      http://libs.baidu.com/jquery/2.1.4/jquery.min.js
// @version      0.2
// @description  BetterGalleryList
// @author       ikarosf
// @match        https://exhentai.org/?*
// @match        https://e-hentai.org/?*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    $(".gl3c.glname>a").click(function(obj){
          $(this).parents(".gl3c.glname").css("background","black")
    });
    $(".gl3c.glname>a").attr("target","_blank");

    $(".gl4c.glhide").each(function(){
      var pagenum = parseInt($(this).find("div:last-child").text())
      var r = pagenum
      var g = 255-pagenum
      var b = 0
      if(pagenum<10){
          r = 255 - pagenum
          b = 255
      }else if(pagenum<=20){
          b = pagenum + 220
      }else if(pagenum<=30){
          b = pagenum + 130
      }
      var rgb = "rgb(" + r + "," + g + "," + b + ")";
      $(this).css("background",rgb)
      $(this).css("color","black")
        $(this).find("div>a").css("color","black")
    });
    // Your code here...
})();