Greasy Fork is available in English.
Removes images from AO3 works and summaries.
当前为
// ==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
// ==/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';
});