// ==UserScript== // @name AO3 Remove Images // @namespace ao3-remove-images // @version 1.0 // @description Removes images from AO3 works and summaries. // @author yuube // @match http*://*.archiveofourown.org/works/* // @grant none // @downloadURL none // ==/UserScript== var chapters = document.querySelector('#chapters'); chapters.querySelectorAll('img').forEach(function (img) { img.style.display = 'none'; }); var summary = document.querySelector('.summary'); summary.querySelectorAll('img').forEach(function (img) { img.style.display = 'none'; });