// ==UserScript== // @name AO3: [Wrangling] Direct Links on Unassigned Fandoms Page // @description Changes links on the unassigned fandom page to go to the All Characters bin directly // @version 1 // @author Ebonwing // @grant none // @license GPL-3.0 // @match *://*.archiveofourown.org/fandoms/unassigned* // @namespace https://greasyfork.org/users/819864 // @downloadURL none // ==/UserScript== var list = document.getElementsByClassName("fandoms index group"); Array.from(list[0].children).forEach(function (el){ el.firstElementChild.href +="/wrangle?show=characters"; });