ExOldButtons

Restore legacy buttons for E/Ex

Versión del día 23/3/2019. Echa un vistazo a la versión más reciente.

  1. // ==UserScript==
  2. // @name ExOldButtons
  3. // @author Hauffen
  4. // @description Restore legacy buttons for E/Ex
  5. // @version 1.0
  6. // @include /https?:\/\/(e-|ex)hentai\.org\/.*/
  7. // @require https://code.jquery.com/jquery-3.3.1.min.js
  8. // @namespace https://greasyfork.org/users/285675
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. var s = `<style>.ct2 {
  13. background-image: url(https://ehgt.org/g/c/doujinshi.png) !important;
  14. background-repeat:no-repeat;
  15. }
  16.  
  17. .ct3 {
  18. background-image: url(https://ehgt.org/g/c/manga.png) !important;
  19. background-repeat:no-repeat;
  20. }
  21.  
  22. .ct4 {
  23. background-image: url(https://ehgt.org/g/c/artistcg.png) !important;
  24. background-repeat:no-repeat;
  25. }
  26.  
  27. .ct5 {
  28. background-image: url(https://ehgt.org/g/c/gamecg.png) !important;
  29. background-repeat:no-repeat;
  30. }
  31.  
  32. .cta {
  33. background-image: url(https://ehgt.org/g/c/western.png) !important;
  34. background-repeat:no-repeat;
  35. }
  36.  
  37. .ct9 {
  38. background-image: url(https://ehgt.org/g/c/non-h.png) !important;
  39. background-repeat:no-repeat;
  40. }
  41.  
  42. .ct6 {
  43. background-image: url(https://ehgt.org/g/c/imageset.png) !important;
  44. background-repeat:no-repeat;
  45. }
  46.  
  47. .ct7 {
  48. background-image: url(https://ehgt.org/g/c/cosplay.png) !important;
  49. background-repeat:no-repeat;
  50. }
  51.  
  52. .ct8 {
  53. background-image: url(https://ehgt.org/g/c/asianporn.png) !important;
  54. background-repeat:no-repeat;
  55. }
  56.  
  57. .ct1 {
  58. background-image: url(https://ehgt.org/g/c/misc.png) !important;
  59. background-repeat:no-repeat;
  60. }
  61.  
  62. .cs {
  63. color: transparent !important;
  64. border-radius: 10px !important;
  65. text-shadow:none !important;
  66. }
  67.  
  68. .cn {
  69. height: 20px !important;
  70. width: 98px !important;
  71. color: transparent !important;
  72. border-radius:10px !important;
  73. text-shadow:none !important;
  74. }
  75.  
  76. .gl5t>div:nth-child(1)>div:nth-child(1) {
  77. width:98px;
  78. background-repeat:no-repeat;
  79. }</style>`;
  80.  
  81. $(s).appendTo("head");
  82. })();