Greasy Fork

AO3 Remove Images

Removes images from AO3 works and summaries.

目前为 2019-08-25 提交的版本。查看 最新版本

// ==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';
});