AO3 Hide Images

Hides images from AO3 works and summaries.

  1. // ==UserScript==
  2. // @name AO3 Hide Images
  3. // @namespace ao3-hide-images
  4. // @version 1.1
  5. // @description Hides images from AO3 works and summaries.
  6. // @author yuube
  7. // @match http*://*.archiveofourown.org/works/*
  8. // @match http*://*.archiveofourown.org/collections/*/works/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. // Hide images in chapters.
  13. var chapters = document.querySelector('#chapters');
  14. chapters.querySelectorAll('img').forEach(function (img) {
  15. img.style.display = 'none';
  16. });
  17.  
  18. // Hide images in summary.
  19. var summary = document.querySelector('.summary');
  20. summary.querySelectorAll('img').forEach(function (img) {
  21. img.style.display = 'none';
  22. });

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址