E-hentai Multi-Page-Viewer Scrollbar

给E-hentai的多页查看器页面加上滚动条

  1. // ==UserScript==
  2. // @name E-hentai Multi-Page-Viewer Scrollbar
  3. // @version 0.2
  4. // @description 给E-hentai的多页查看器页面加上滚动条
  5. // @author SchneeHertz
  6. // @homepage https://github.com/SchneeHertz/EH-UserScripts
  7. // @supportURL https://github.com/SchneeHertz/EH-UserScripts/issues
  8. // @match https://e-hentai.org/mpv/*
  9. // @match https://exhentai.org/mpv/*
  10. // @grant GM_addStyle
  11. // @namespace http://tampermonkey.net/
  12. // ==/UserScript==
  13.  
  14.  
  15. GM_addStyle(`
  16. div#bar3 {
  17. left: -20px;
  18. }
  19. div#pane_images {
  20. overflow-x: hidden;
  21. overflow-y: scroll;
  22. }
  23. `);