AO3 Hide Author's Notes

Hides all author's notes on AO3 works.

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

// ==UserScript==
// @name         AO3 Hide Author's Notes
// @namespace    ao3-remove-authors-notes
// @version      1.0
// @description  Hides all author's notes on AO3 works.
// @author       yuube
// @match        http*://*.archiveofourown.org/works/*
// @grant        none
// ==/UserScript==

// Remove work author note.
var preface = document.querySelector('#workskin .preface');
preface.querySelector('.notes .userstuff').style.display = 'none';

// Remove chapter notes.
var chapters = document.querySelector('#chapters');

chapters.querySelectorAll('.notes').forEach(function (note) {
   note.style.display = 'none';
});