Hide E-hentai Comments

Hide comments on E-hentai &ExHentai.

  1. // ==UserScript==
  2. // @name Hide E-hentai Comments
  3. // @name:cn 隐藏E-hentai评论
  4. // @version 0.1
  5. // @description Hide comments on E-hentai &ExHentai.
  6. // @description:cn 对E-hentai &ExHentai评论区进行隐藏/屏蔽。
  7. // @match https://e-hentai.org/*
  8. // @match https://exhentai.org/*
  9. // @license MIT
  10. // @namespace https://greasyfork.org/users/1176046
  11. // ==/UserScript==
  12.  
  13. // 屏蔽评论区
  14. const element = document.getElementById("cdiv");
  15. element.style.display= "none";