Sleazy Fork is available in English.

yimuhe

hilight yimuhe download links in javlib webset

Pada tanggal 27 Juni 2018. Lihat %(latest_version_link).

  1. // ==UserScript==
  2. // @name yimuhe
  3. // @namespace https://greasyfork.org/zh-CN/scripts/38740-yimuhe
  4. // @version 0.5
  5. // @description hilight yimuhe download links in javlib webset
  6. // @author You
  7. // @include http://*.javlib.com/*
  8. // @include http:/*.d21b.com/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12.  
  13.  
  14. (function () {
  15. $.each($("a[href^='redirect.php?url']"),function(index,a){
  16. var host = location.host;
  17. a.href = decodeURIComponent(a.href.replace("http://"+host+"/cn/redirect.php?url=",""));
  18. a.text = a.text + " " + a.href + " ";
  19. if(a.href.includes("yimuhe")){
  20. $(a).parentsUntil("tr").closest('.t').css('background-color', '#6B6C83');
  21. }
  22. });
  23.  
  24. }) ();