Greasy Fork

AO3 Hide Images

Hides images from AO3 works and summaries.

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

// ==UserScript==
// @name         AO3 Hide Images
// @namespace    ao3-hide-images
// @version      1.0
// @description  Hides images from AO3 works and summaries.
// @author       yuube
// @match        http*://*.archiveofourown.org/works/*
// @grant        none
// ==/UserScript==

// Hide images in chapters.
var chapters = document.querySelector('#chapters');
chapters.querySelectorAll('img').forEach(function (img) {
   img.style.display = 'none';
});

// Hide images in summary.
var summary = document.querySelector('.summary');
summary.querySelectorAll('img').forEach(function (img) {
   img.style.display = 'none';
});