Greasy Fork is available in English.
Changes links on the unassigned fandom page to go to the All Characters bin directly
// ==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 <https://www.gnu.org/licenses/gpl.html>
// @match *://*.archiveofourown.org/fandoms/unassigned*
// @namespace http://greasyfork.icu/users/819864
// ==/UserScript==
var list = document.getElementsByClassName("fandoms index group");
Array.from(list[0].children).forEach(function (el){
el.firstElementChild.href +="/wrangle?show=characters";
});